TheDamian
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 4.2.3 caused all my embedded forms to stop displayingI think I found a fix. I went back to HubSpot to grab the embed code and it looks different. I pasted the new embed code into the site and this fixed the problem. It’s a new URL for the JS file and a conditional include for IE.
I don’t know if HubSpot did this as a fix for this problem or if they changed something and that’s what caused the break.
Forum: Fixing WordPress
In reply to: 4.2.3 caused all my embedded forms to stop displayingSomethingWonderful, I’m not having the problems described in that thread on any of my sites. Not sure how I dodged that bullet.
It made me try forcing the HubSpot script URLs to HTTP, but that didn’t help.
Forum: Fixing WordPress
In reply to: 4.2.3 caused all my embedded forms to stop displayingI’m not using a plugin to embed my HS forms and they’re not working.
Forum: Fixing WordPress
In reply to: 4.2.3 caused all my embedded forms to stop displayingIt doesn’t seem to be browser-dependent. It’s broken on recent/latest versions of IE, Chrome, and FF on Windows 8 and FF on Ubuntu.
I did a backup and updated all the plugins, that didn’t help.
No errors in Firebug console.
Still digging around.
Forum: Fixing WordPress
In reply to: 4.2.3 caused all my embedded forms to stop displayingYeah, I just figured out I’m having the same problem and came here hoping for an answer. I’m going to try a few things. Please report back if you find a solution.
I added this filter to my theme’s functions.php:
/** change the YITH WooCommerce Featured Video embed string to include rel=0 */ add_filter('woocommerce_single_product_image_html', 'add_yt_rel', 30, 1); function add_yt_rel($text) { $return = str_replace('wmode=transparent', 'wmode=transparent&rel=0', $text); return $return; }Forum: Plugins
In reply to: [Plugin: Logo Slider] Images HTTP on HTTPS PagesHere is the filter I created to fix the http:// links in the slider itself:
/** change logo slider image sources to https when pages is viewed from SSL */ add_filter('widget_text', 'https_for_slider'); function https_for_slider($text) { if (is_ssl()) { $text = str_replace('http://', 'https://', $text); } return $text; }The CSS insertion uses wp_head() which doesn’t allow for filtering, just actions. For now I edited the plugin file.
Using ob_start() as described here: http://wordpress.org/support/topic/filter-to-grab-wp_head-contents is an option, but I decided not to get into that for now.