Joshua Fredrickson
Forum Replies Created
-
To confirm, this is using the “Cool Timeline Block” in horizontal mode.
The Image Size option described here doesn’t appear:
https://docs.coolplugins.net/doc/cool-timeline-pro/create-timeline-using-instant-timeline-builder/story-setting/- This reply was modified 4 years, 1 month ago by Joshua Fredrickson.
Yep! Looks good on the latest version.
Thanks!
I tried this on three different sites as well as incognito window. Same results unfortunately.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Editor Bug – Conflict with Duplicate PageThis is a temporary fix, right? I’m hoping an official fix will make it into the next version. 🙏
Forum: Plugins
In reply to: [TaxCloud for WooCommerce] Unnecessary assets loaded on frontendGreat thanks!
In the interim, I’ve dequeued those two stylesheets.
add_action('wp_enqueue_scripts', function () { wp_dequeue_style('sst-modal-css'); wp_dequeue_style('sst-certificate-modal-css'); }, 100);I’m sure that will have some side effects. Where do the modal and certificate modal come into play? I didn’t see any mention of them in the docs/faqs.
Appreciate the assist.
And another when accessing the admin area:
implode(): Passing glue string after array is deprecated. Swap the parameters in /***/plugins/wp-analytify/lib/Google/Http/REST.php on line 134Forum: Plugins
In reply to: [Autoptimize] Exclude plugin files when in a non-standard directoryYep. You’re right. That did the trick. Thanks for the assist!
Forum: Plugins
In reply to: [Autoptimize] Exclude plugin files when in a non-standard directoryThat doesn’t work either. 🤷🏼♂️
Forum: Plugins
In reply to: [Easy Testimonials] Theme reset by updateAgree. Very not cool.
Version 7.8 is throwing a PHP fatal error on PHP 5.x. Killed at least two client sites running legacy PHP.
Forum: Reviews
In reply to: [Gutenberg] WordPress PLEASE PLEASE PLEASE GET RID OF THIS THING!!It’s super easy to go back to the previous editor… Just install the Classic Editor plugin.
Enjoy!
Forum: Plugins
In reply to: [Autoptimize] jquery still being optimizedAdding that filter did the trick.
Although, it seems to make sense that if a script is excluded in the settings that it would automatically be excluded from all AO filters.
Thanks for help!
Forum: Plugins
In reply to: [Autoptimize] jquery still being optimizedI’m seeing this issue on another excluded script. It was being successfully excluded up until version 2.4.0.
Rolling back to 2.3.4 resolves the issue.
Forum: Fixing WordPress
In reply to: 4.9 get_category_link() not workingI’m seeing the same thing as you, @priprod.
get_category_link($id)returns a string with a length of 0. This is with a known valid$idbeing passed to it.This worked in 4.8.3 and stopped working immediately after updating to 4.9 on multiple sites.
EDIT: Replacing it with
get_term_link($id)worked as expected.- This reply was modified 8 years, 7 months ago by Joshua Fredrickson.
That same page says WordPress supports PHP 5.2.4. Here’s a suggestion if you’re open to it…
Since WordPress officially supports PHP 5.2.4, it doesn’t make sense that your plugin would trigger fatal errors in that environment. It’d be better if the plugin automatically deactivated or displayed a warning if the server doesn’t meet the plugin’s requirements.
For example, something as simple as:
// Exit gracefully if PHP version is lower than 5.3.2 // @todo remove this when WordPress drops support for PHP version < 5.3.2 if (version_compare(PHP_VERSION, '5.3.2', '<')) { ... }My two cents. 🙂 I’ll leave you alone now.