InsideOut Solutions - Ozette Plugins
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Mobile URL Redirect] full site toggleIt doesn’t do that. It just does it automatically.
The plugin is just looking for a basic URL.
Such as https://cleanslatespabeautyboost1.cloudhostedresources.com
Forum: Plugins
In reply to: [CPT-onomies: Using Custom Post Types as Taxonomies] Query Not Working in 4.1You can use
echo $GLOBALS[‘wp_query’]->request;
to see what the end request of the query is. Without the change you’ll see ( 0 = 1 ), which obviously will return false. Try it with your change and see what the sql query returns. I think it won’t find the ( 0 = 1 ) and replace it with nothing.
Forum: Plugins
In reply to: [CPT-onomies: Using Custom Post Types as Taxonomies] Query Not Working in 4.1Looks like my file is older. Should be line 533 in manager.php.
The incorrect line reads:
// remove 0 = 1
$clauses[ ‘where’ ] = preg_replace( ‘/0\s\=\s1\sAND\s/i’, ”, $clauses[ ‘where’ ] );REPLACE with:
// remove 0 = 1
$clauses[ ‘where’ ] = preg_replace( ‘\(\s/0\s\=\s1\s\)\sAND\s/i’, ”, $clauses[ ‘where’ ] );This is being tracked as a bug on github. So hopefully there will be a fix soon.
https://github.com/Yoast/google-analytics-for-wordpress/issues/79
Having the same issue here. Please fix.
Forum: Plugins
In reply to: [Simple Mobile URL Redirect] No longer working after updatesend it to [email protected]
Forum: Plugins
In reply to: [Simple Mobile URL Redirect] No longer working after updateCan you go to the settings page and verify that the redirect is enabled?
https://www.lisasliquorbarn.com/wp-admin/options-general.php?page=simple-mobile-url-redirect/mobile-redirect.php should be the url.
Implementing in the version releasing today.
Implementing in the next version that I’m releasing today.
Forum: Plugins
In reply to: [Insights] Image Search Not WorkingThanks for the update!
Forum: Plugins
In reply to: [Simple Mobile URL Redirect] Plugin is redirecting Ipad and android tabletsMarking as resolved then.
Forum: Plugins
In reply to: [Simple Mobile URL Redirect] Plug in not functioningYou need to go to settings > Mobile Redirect and turn it on and specify the location of your redirect.
Forum: Plugins
In reply to: [Simple Mobile URL Redirect] plugin not working with page cacheWhat kind of exceptions can you add to W3? I’m not entirely familiar with that plugin.
The plugin deletes all the options for redirects when you uninstall, so it must just be a caching issue. Still having trouble?