launchinteractive
Forum Replies Created
-
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Use of PHP 7-only constantsLike you said, being such a trivial change I’ve rolled it in. 1.8.10 is now released that should fix this.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Use of PHP 7-only constantsThats true, however we are just using the constant to make sure that an action fires before everything else. In most cases -999999 should be fine (You could set it to -9223372036854775808 if you wanted).
PHP_INT_MAX is also used so you might want to define that to 9223372036854775807.
Normally I would add a fix for this but seems as PHP <= 7.0 is out of active support I’m not sure its worth it. What do you think?
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Use of PHP 7-only constantsHi Roy,
Try adding this to your wp-config.php:
define(‘PHP_INT_MIN’, -999999);
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Issue with Elementor wp_add_inline_style usageHi,
I’m glad you solved it. Currently there is no regular expression support for the exclusion list so its just the absolute path at this stage. We were thinking of adding it.. if you want to have a fiddle I think this should work by modifying line 655:
!in_array($ourList->registered[$handle]->src, $this->ignore)to this:
preg_match("/".implode('|',$this->ignore)."/", $ourList->registered[$handle]->src) == 0Forum: Reviews
In reply to: [Merge + Minify + Refresh] Just do nothingHi Supergap,
Did you visit the page your testing before submitting it to Page Speed? You will need to wait for the cron to run to generate the compiled files.
Forum: Plugins
In reply to: [Intuitive Custom Post Order] Multisite and wpSEO or Yoast SEO ProblemsI’ve just submitted a pull request for this…
https://github.com/hijiriworld/intuitive-custom-post-order/pull/29
Forum: Plugins
In reply to: [Intuitive Custom Post Order] Multisite and wpSEO or Yoast SEO ProblemsHi Tobias,
I had exactly this same problem and have managed to get it to work based on this post: https://ww.wp.xz.cn/support/topic/multisite-problems-conflicts-with-yoast-seo/
All you need to do is open up intuitive-custom-post-order.php and replace switch_to_blog( $curr_blog ); and switch_to_blog($current); with restore_current_blog();
That will get it to work.. but you could also remove the unnecessary variables.. eg. $current = $blog_id;
Forum: Plugins
In reply to: [Merge + Minify + Refresh] GDPR Save?No you should be right. MMR doesn’t collect any personal information.
Ok, well I’d say it was PHP minify that was having the issue. I’ve found closure to perform better and have less issues but thats not always the case. I’ll close this now as its no longer being used.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Migration IssueThat looks like an issue with fast velocity. You can try to remove the plugins from your plugin directory. That should allow you to get to the admin.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Pictures on Mobile go MissingHi jackpr,
It sounds like MMR might be causing some javascript to not run correctly. When you enable MMR do you have any javascript errors showing in the error console?
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Disable RefreshHi, there isn’t a way to disable the automatic purge.
What are you using to cache your pages? Perhaps we could add a hook so you could trigger a page cache reload?
Forum: Plugins
In reply to: [Merge + Minify + Refresh] A message keeps appearing on product pageThat’s very odd. Where exactly is the message showing?
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Possibly not compatible with W3 Total Cache?No probs. I’ll mark this as resolved.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Possibly not compatible with W3 Total Cache?jQuery usually fails because it’s normally minified. When you Minify a Minified script strange things happen. If your including jQuery yourself you can include an unminified version and it should work. Alternatively you can include jQuery in an external domain or CDN. Your last option is to add the jQuery path in the ignore scripts section of the plug-in settings.