There’s a conflict between Ultimage Tag Warrior (UTW) and Semiologic Static Front Page plugin.
When requesting a tag page, the result is always a 404 error page (using or not permalinks structure). If I deactivate Sem static front page plugin, everything is OK.
Does anybody knows how to solve this problem ?
Thanks for your help :)
ChristineD
Member
Posted 6 years ago #
Find a different static front page plugin d:
His plugin makes a mess of the where clause* before my plugin can tell his not to**.
*instead of adding to it, he replaces it; which removes all sorts of other useful bits that ought to be in the where clause, allowing draft/unpublished things to display...
** his adds where clause stuff when wordpress tells it that its the homepage. My plugin knows to tell wordpress that it isn't the homepage
ChristineD
Member
Posted 6 years ago #
A hackery way around, which makes me grumpy; is in the
ultimate_posts_where function, in ultimate-tag-warrior-actions.php file is to add
global $wp_query;
$wp_query->is_home=false;
after the check for
if (get_query_var("tag") != "") {
Thanks a lot for your help Christine.
And thanks for your great UTW :)