Thread Starter
chuckw
(@chuckw)
This is running in IIS with no URL Rewrites.
Permalink Custom structure http://my.domain.com/index.php/%postname%/
Links were being created as http://my.domain.com/%postname%/?letter=A
They needed to be http://my.domain.com/index.php/%postname%/?letter=A
A simple edit of the plugin’s core.php resolved the issue.
Was:
$current_url = esc_url( home_url( ‘/index.php/’,’relative’ ) ) . basename(get_permalink());
Now:
$current_url = esc_url( get_permalink());
and:
$url_param = “?”;