BUG – Bad URL if permalink structure don't finish by /
-
If you choose a permalink without / at the end, the plugin don’t add a / and add the page number to the url.
A simple workaround. Line 251
//return $base . user_trailingslashit( $pagenum, 'page' ); if(substr($base, -1) == '/') { return $base.$pagenum; } else { return $base.'/'.$pagenum; }
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘BUG – Bad URL if permalink structure don't finish by /’ is closed to new replies.