Mindshare Labs, Inc.
Forum Replies Created
-
Forum: Plugins
In reply to: [PHP Browser Detection] Chrome reporting version number as 0.0I just sent the update to wordpress.org, try version 2.2.
Forum: Plugins
In reply to: [PHP Browser Detection] Chrome reporting version number as 0.0This issue has been fixed. I’ll be pushing an update in the next hour.
Forum: Plugins
In reply to: [PHP Browser Detection] Firefox 19This has been resolved. I am pushing an update out in the next hour. Thanks for reporting it!
Forum: Plugins
In reply to: [PHP Browser Detection] Is there a way to check for any non-mobile device?This should work:
if(!is_mobile()) { // this code is run if the viewer is not on mobile };Forum: Plugins
In reply to: [PHP Browser Detection] Parse error, Syntax errorYou need to replace “do stuff” with whatever code you want to execute.
Forum: Plugins
In reply to: [PHP Browser Detection] Firefox 19We’re working on an update that will fix this… hopefully soon. Stay tuned.
Forum: Plugins
In reply to: [PHP Browser Detection] IE9 detectionI’m planning an update that will add this… hopefully soon. Stay tuned.
Forum: Plugins
In reply to: [PHP Browser Detection] Support for "versions lower than" or "higher than"You can do what you are after using the
get_browser_version()function and little bit of PHP, for example:$v = get_browser_version(); if($v < 7 && is_IE()) { // do stuff for IE browsers older than IE7 }Forum: Plugins
In reply to: [Connections Business Directory] connectionEntryList issueThanks… I am using the old system. I’ll update it.
Forum: Plugins
In reply to: [Clone] Connection resetThanks for your help. They are hosting it themselves. I’m getting them to switch to an external host soon though.
Forum: Plugins
In reply to: [Clone] Connection resetIt takes awhile. It’s definitely a server issue – I think their firewall is blocking it. Also their uploads folder is about 500mb so that could be the issue too.
Forum: Plugins
In reply to: [PHP Browser Detection] Suggested change to codeThat’s a good catch. I’ll look into making an update for the next version.
Forum: Plugins
In reply to: [PHP Browser Detection] How do I set the same property for several browsers?You could something like this:
if(is_IE($version)) { moover(22); elseif(is_chrome($version)) { moover(18); } else { moover(16); }Make sense?
Sorry my last remark wasn’t really appropriate for your question…
You could try something like this:
<?php if(is_iphone()) : ?> Hey nice iPhone. <?php else : ?> Not using iPhone. <?php endif; ?>Forum: Plugins
In reply to: [PHP Browser Detection] missing versions from output –Sorry for the delay… I just released an update with the latest available browser capabilities file. Let me know if that solves your issue.