Ok, will dig into it a little more… or pick one of the others.
Yep, same here… ever find a fix?
I figured this out… might be too late or you already got it done yourself.
I made changes to the two files below (I am using ‘documentation’). I don’t have any other pages or posts using that same permalink path. I also had to remove all my wiki pages, deactivate the plugin and activate it again. Only after re-activation did my new path get used.
..plugins/wordpress-wiki/model/wiki_post_type.php
around line 46
'rewrite' => array('slug' => 'wiki', 'with_front' => FALSE)
..plugins/wordpress-wiki/controllers/wiki_pages.php
around line
$wiki_parser->reference_wiki = get_bloginfo('url').'/wiki/';
around line 435
$new_link = '<a href="'.get_bloginfo('url').'/wiki/new'.$get_params.'">Click here to create it.</a>';
around line 488
$url = get_option('siteurl') . '/wiki/' . ($namespace ? $namespace.'/' : '') . $topic;