Mindshare Labs, Inc.
Forum Replies Created
-
Forum: Plugins
In reply to: [Subscribr] Now What?The plugin adds an options page under Settings > Subscribr.
You can change the options to decide if you want the notifications signup form to appear on the user registration page and/or the user profile page. A widget and shortcode will be coming soon but are not yet done. Let me know if you need more help.
Forum: Plugins
In reply to: [PHP Browser Detection] How to detect android pad device e.g. nexus 7This issue is because the browscap.ini file that the plugin depends on doesn’t have support for newer versions of Android yet. This issue is on our todo list, thanks for reporting it.
If you want to get more involved you should consider reporting the issue to the team that is maintaining the browscap.ini file here:
Forum: Plugins
In reply to: [PHP Browser Detection] Printing browserInfo does not work on Mac FF 23This should be fixed in 2.2.1, please let me know if it is still an issue.
Forum: Plugins
In reply to: [PHP Browser Detection] Is_firefox is not workingThis should be fixed in the new version, 2.2.1.
Forum: Plugins
In reply to: [PHP Browser Detection] How do display alternate content if Chrome and OS X?You’d need to use the php_browser_info() function to check the platform variable in order to test for OSX. Check out the tests.php file on your site and look for the [platform] entry.
Seems to be an unusual Windows problem – but this will be fixed in the next release. Thanks for reporting it!
This is fixed in 2.2.1, the update will be released tonight.
Forum: Plugins
In reply to: [PHP Browser Detection] Settings / Display Info?You will need basic PHP knowledge to make any use of this plugin. It is meant for developers… there are no user settings, you just use the plugin functions in your code.
Forum: Plugins
In reply to: [PHP Browser Detection] is_mobile() not working after upgrade to 2.2Thanks for the bug reports and sorry for the delay between updates. This will be fixed in the next version.
Forum: Plugins
In reply to: [PHP Browser Detection] Small issue generating PHP NoticesThanks! Added to the next update.
Forum: Plugins
In reply to: [PHP Browser Detection] Correct use & syntaxNo that code won’t work.. it’s not valid PHP. You should try taking some PHP tutorials online… teaching PHP is beyond the scope of supporting this plugin.
To point you in the right direction take a look at: http://codex.wordpress.org/Function_Reference/wp_redirect
Forum: Plugins
In reply to: [PHP Browser Detection] Some errors in descriptionThanks these will be fixed in the next update!
Forum: Plugins
In reply to: [PHP Browser Detection] Firefox Mobile supportWe’ve added this issue to our to do list. Thanks!
Forum: Plugins
In reply to: [PHP Browser Detection] The Safari only css is affecting ChromeWe can’t duplicate this issue. Can you provide any more detail? If not, we’re going to mark this issue as closed.
Forum: Plugins
In reply to: [PHP Browser Detection] Loading CSS W.R.T the browserSorry about the delay. Yes you can add CSS based on the detected browser.
Try something like this in the header.php file of your theme, inside the HEAD tag:
<?php if(is_firefox($version)) { echo '<link rel="stylesheet" href="browser-styles.css" />'; }; ?>