davidklaw
Forum Replies Created
-
Forum: Plugins
In reply to: [Autoptimize] Pantheon test/live environments not using aggregated filesGood looking out Frank, thank you!
Forum: Plugins
In reply to: [Autoptimize] Pantheon test/live environments not using aggregated filesWell, I’m literally looking to resolve this within minutes of posting it.
I’d be testing a single page, but it turns out it was a page where “Optimize this page?” had been disabled. I didn’t realize that was an option and now see that *this* is the resolution – finding these pages that aren’t enabled and enabling them.
Aha, okay. Thanks.
@crmperks I’ve tried that to no avail. I tried using just “test” but also appending “test” to a form field token.
@sbazzi Yes! I enabled and have tried both static text and tokens from the list of available form fields. Screenshots uploaded to https://imgur.com/a/CRKZvt4
Forum: Plugins
In reply to: [Podcast Player - Your Podcasting Companion] Shortcode for the Catalogue demoHmm, I understand and will need to give this some thought. Thanks for clarifying.
Forum: Plugins
In reply to: [Podcast Player - Your Podcasting Companion] Shortcode for the Catalogue demoThe page in question is this: https://www.detroitlabs.com/podcasts/
It was the proper width, but not working. It’s working now, but only because I created a new element (in WPBakery Builder) with the shortcode. *shrug*
But what I’d really like now is a player similar to the one in the demo and not the large video player that’s appearing now. How might I change it up to use that?
Forum: Fixing WordPress
In reply to: Shortcodes stop working after 3.4.1 upgradeI’m having a similar issue with WordPress 3.4.1 on an EC2 server with PHP 5.3.14. On 2 separate projects I’ve had issues not with shortcodes not working at all, but rather with them not parsing arguments correctly.
I spent a lot of time looking in to it last night and it turned out to be this line of code in /wp-includes/shortcodes.php in the shortcode_parse_atts() function:
$text = preg_replace("/[\x{00a0}\x{200b}]+/u", " ", $text);In my staging environment this replace is essentially wiping out all of the shortcode arguments. Commenting it out fixes the problem. I’ve found this issue discussed in several other places but none include a solution.
If there’s anything else I can provide that can help figure this one out let me know.