Mindshare Labs, Inc.
Forum Replies Created
-
Forum: Plugins
In reply to: [PHP Browser Detection] Trouble getting browser versionHey there! We definitely don’t mean to leave you hanging but let’s clarify one thing first: this is free software and we aren’t responsible for anything that happens to your site.
That said, every previous version of this, and every other plugin on WordPress.org, is always available directly from the repo: https://wordpress.org/plugins/php-browser-detection/developers/
So feel free to roll back to any previous version. The issue you are describing is likely either that you are using an older PHP version or that the plugin is causing your hosting account to run out of memory. If you provide any more info we can try and help you debug that. But please don’t be so accusatory about the completely unpaid work we put in to this project.
Try deactivating all other plugins and temporarily activating the default WordPress theme. If the plugin still causes an error then it is indeed a bug. Otherwise the issue probably lies someplace else. If using the default theme and no other plugins still results in a fatal error let us know what PHP version you have and how much ram you have accessible.
Thanks.
Forum: Plugins
In reply to: [PHP Browser Detection] Trouble getting browser versionNope I just made sure. The current version on WP.org is fixed. Please delete the old plugin and completely reinstall it to be sure.
Forum: Plugins
In reply to: [PHP Browser Detection] Trouble getting browser versionActually, hang on I might have forgot to push a file…
Forum: Plugins
In reply to: [PHP Browser Detection] Trouble getting browser versionProbably you didn’t get the new version. Please double check.
Forum: Plugins
In reply to: [PHP Browser Detection] Trouble getting browser versionHi hommealone,
This is now fixed, try the new version that I’m uploading right now. Should be available in a few minutes. Thanks for reporting the issue!
Forum: Plugins
In reply to: [WP Ultimate Search] Beta Version (with all premium features FREE)Just pushed out a bugfix for this on Github.
Forum: Plugins
In reply to: [PHP Browser Detection] Detect if plugin is onAny of the plugin’s functions will throw an error if the plugin is not active. So this is one implementation:
function is_browser_detection_on() { if(function_exists('php_browser_info')) { return TRUE; } else { return FALSE; } }Forum: Plugins
In reply to: [PHP Browser Detection] Detect if plugin is onGo to the plugins page in the WP admin. If it says the plugin is active, it is active.
It doesn’t do anything by itself. You have to use in your PHP code.
Forum: Plugins
In reply to: [Subscribr] Custom post typeThanks for the feedback!
Forum: Plugins
In reply to: [PHP Browser Detection] Only detecting Chrome correctlyThis is not an issue that would have anything to do with our plugin. It’s a question for the caching plugin author. What you are asking is to make sure certain aspects of the page do not get cached. Not sure how that could be achieved. My guess is it isn’t possible.
Forum: Plugins
In reply to: [PHP Browser Detection] Only detecting Chrome correctlyWe cannot duplicate this issue. We just tested the latest version and it is working correctly on our servers.
Double check you don’t have any whitespace in header.php or index.php before the PHP code executes. You could also try putting this in index.php, above the HTML opening tag.
Forum: Plugins
In reply to: [PHP Browser Detection] Tablets' orientation (portrait/lansdscape)You could output both menus and then hide one using CSS and change which one is displayed based on media queries.
Forum: Plugins
In reply to: [PHP Browser Detection] Tablets' orientation (portrait/lansdscape)This is not possible. You should use jQuery or CSS for this.
Forum: Plugins
In reply to: [PHP Browser Detection] Tablets not recognisedI’m glad you got it worked out!