Webstractions
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Product Review Lite] Format ProblemThe product image not displaying is actually the plugin that is doing this. I traced that problem back to
wppr-main.phpfile. On or about line 132, you have an inline style attribute for the image withvisibility:hidden. If you remove that style attribute, the image will display properly.As for the rating pie-chart, review rating bars, and comment rating sliders not showing, is anyone’s guess. Not a jQuery expert. But, there is probably some conflict here with other plugins on this particular site. There is enough javascript to choke a horse.
I would suggest switching to the default theme to rule out that it is not the current theme at fault. If the problem persists, deactivate all plugins to see if that corrects it. If it does not, then we know it it plugin at fault.
Forum: Plugins
In reply to: [Custom Contact Forms] recaptcha issues@zerosquared – Well, he is handling questions on a more regular basis on GitHub
https://github.com/tlovett1/custom-contact-forms/issues
It also states in the plugin notes that detailed configuration, questions, feature requests, AND support for the plugin is to be addressed there. The plugin author is under no obligation to field questions on WP.org on a daily basis.
Forum: Plugins
In reply to: [Custom Contact Forms] recaptcha issues@zerosquared: The code is in the file
class-ccf-form-renderer.phpwp_enqueue_script( 'ccf-google-recaptcha', '//www.google.com/recaptcha/api.js?onload=ccfRecaptchaOnload&render=explicit' );If you dequeue the script in your theme, you can over-ride this with anything you wish.
I guess, if you want to test this out, the following might work. I have not tested this, but should get you on the right track.
<?php wp_dequeue_script( 'ccf-google-recaptcha' ); wp_enqueue_script( 'ccf-google-recaptcha', '//www.google.com/recaptcha/api.js?fallback=true&onload=ccfRecaptchaOnload&render=explicit' ); ?>Forum: Plugins
In reply to: [Custom Contact Forms] recaptcha issuesHmm.
I only tested this in Firefox with an inline style via Firebug.
Try this in your stylesheet:
ccf-recaptcha-wrapper::after { clear: both; content: "."; display: block; height: 0; visibility: hidden; }That is a more conventional way of clearing floats.
Forum: Plugins
In reply to: [Custom Contact Forms] recaptcha issuesccf-recaptcha-wrapper { clear:both; }Forum: Plugins
In reply to: [Custom Contact Forms] recaptcha issuesOn the wrapper for the reCaptcha box class
ccf-recaptcha-wrapperyou need to clear all floats. That should do the trick!Forum: Plugins
In reply to: [mobble] Chrome for iOS not being detectedThanks for that link. I noticed that it didn’t correctly identify my desktop browser as Firefox.
It did do well for the iPad, and correctly identified the Chrome and Safari browsers.
Forum: Plugins
In reply to: [mobble] Chrome for iOS not being detectedScott,
I found the problem for detecting Chrome on iOS. It is due to the logic in the WP include file
vars.phpwhich sets the$is_chromevariable. It only searches the UA string for the word ‘Chrome’ and not the other browser names such as ‘CriOS’ and ‘CrMo’.Your plugin relies on the $is_chrome global to add it to the body class. You also rely on other simple browser checks for gecko, IE, opera, etc.
You could use their Beta feature function
Mobile_Detect::is()rather than the globals from WordPress. You can test for all of the global equivalents and more with the mobile detection file.Forum: Plugins
In reply to: [mobble] Chrome for iOS not being detectedOne UserAgent string for iOS and Chrome is:
Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_1_1 like Mac OS X; da-dk) AppleWebKit/534.46.0 (KHTML, like Gecko) CriOS/19.0.1084.60 Mobile/9B206 Safari/7534.48.3There is a list of UserAgent strings being maintained at a support thread for the Firefox UserAgent Switcher list, an extension for Firefox and last updated on Jan-9-2015.
You will notice that the Chrome browser is identified as CriOS and not Chrome. The current version of mobile-detect.php in the plugin does correctly identify that as a Chrome browser, so no problem there.
Forum: Plugins
In reply to: [mobble] Chrome for iOS not being detectedAccording to Dave at Shellcreeper, the user agent string for Chrome on an Android is:
Mozilla/5.0 (Linux; Android 4.1.2; New Andromax-i Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.90 Mobile Safari/537.36I am assuming the user string would be fairly close to that and the following code should detect it:
If( is_ios() && is_chrome() ) { // then do some iOS chrome browser stuff } else ...See Better Responsive Design with
wp_is_mobile, Why Responsive Design is Not EnoughForum: Plugins
In reply to: [WordPress Importer] PHP 5.4 Strict StandardsDitto that. I am seeing the same errors as Zane on the import page.
Forum: Plugins
In reply to: [DW Shortcodes Bootstrap] Bootstrap 3.0Ditto on 3.0
I would imagine this would be a major rewrite of code. Many things (especially the grid system) had a major overhaul. Supporting both versions is going to be a headache.
Forum: Plugins
In reply to: [Responsive WordPress Slider - HG Slider] Plugin IssueSuggest you deactivate the other plugin and try again.
Forum: Fixing WordPress
In reply to: Blog Page Showing Page NameTry publishing the page first. We can’t view your “preview only” pages.
Forum: Fixing WordPress
In reply to: Page jump issuesRemove the # sign from “name=” attribute.