Charleeesh
Member
Posted 1 year ago #
Hi, I was trying to install your plugin and everything works fine, But then I suddenly discover that first post of my blog is pointing to different static page. To be more clear. Everytime I activate plugin every first post directing not to post but to static page.So when broken post jumps from first place to second place it works allright again and it screws again first. Ive tried this aslo on fresh WP install and its behave same way.
My permalinks are set to POSTNAME. And Im using Mystique theme and I bought developer version of GF
Thank for your help
http://wordpress.org/extend/plugins/gravity-forms-addons/
Charleeesh
Member
Posted 1 year ago #
Please link to the actual page running the directory; I can't find it.
Charleeesh
Member
Posted 1 year ago #
Sorry I had it disabled. Please chech this.
This is actuall directory page http://www.silencraft.cz/seznam-guild
And please check first post on blog page http://www.silencraft.cz. Its pointing to /kontakt static page.
I'm not sure what the problem is - it's working properly for me.
Charleeesh
Member
Posted 1 year ago #
This is wierd. When plugin is activated firt post here http://www.silencraft.cz is pointing to wrong http://www.silencraft.cz/kontakt (static page) but it should go to http://www.silencraft.cz/minecraft-verze-1-9-prerelease which is perm link for this post. Page with directory addon working fine. It always happen to the first post.
That sounds like a theme issue to me....
millbank
Member
Posted 1 year ago #
I had a similar problem where the back to directory somehow pointed to my contact page and I added an add_filter entry in my functions.php file.
add_filter('kws_gf_directory_backlink', 'link_to_member_directory');
function link_to_member_directory($entryback) {
return str_replace('http://www.agcetn.org/contact', 'http://www.agcetn.org/member-directory', $entryback);
}
This made the Back to directory link point back to the directory and not the contact page. Wierd stuff, but maybe this will help.