launchinteractive
Forum Replies Created
-
Forum: Plugins
In reply to: [Merge + Minify + Refresh] How to prevent re-merge CSS & JS?Hi Brandon,
MMR re-merges the JS and CSS when the files change, for example when WordPress updates. If it didn’t do this the stale files would cause bugs.
Does this answer your question?
Marc
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Ignor js merge did not workAwesome!
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Ignor js merge did not workTry it with the full path that MMR lists in it logs
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Ignor js merge did not workDid you add the full path?
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Won’t work when opening Elementor editorHi, I’ve tested the latest version of WordPress, Elementor and MMR and it seems to work ok. Perhaps you have another plugin that is conflicting?
Either way, this code should disable MMR with the Elementor editor:
function should_mmr_elementor($should_mmr) { if($should_mmr && is_user_logged_in()) { if( isset($_GET['url']) && $_GET['url'] == '/wp-json/elementor/v1/globals' || isset($_GET['elementor-preview']) ) { return false; } } return $should_mmr; } add_filter('should_mmr', 'should_mmr_elementor');Please try adding that to your functions file. If that works ok I might make another MMR plugin for Elementor sites.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Images no longer shownWow, thanks for the update. I’m glad its back to normal!
I hope you can get your score back up.Forum: Plugins
In reply to: [Merge + Minify + Refresh] Images no longer shownOk, no worries. Let me know if you want me to have another look at it.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Images no longer shownThat is very strange. I would try re-installing WordPress to make sure none of its files have become corrupt. Do you have reliable hosting? It sounds like the hard disk might be failing.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Images no longer shownHi,
It looks like your using autoptimize on your site. Did you have both plugins enabled at the same time?
Do you have other magnification plugins installed at the same time?
Do you know if there were errors in your browser console or css/js files that weren’t loading correctly?I’m wondering if there is a conflict that is causing this to happen. MMR shouldn’t be messing with any images so I’m a bit confused as to why this would be happening to you.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] do you plan to test plugin with WordPress 5.6Hi Teresa,
You should be fine to update. MMR works fine in the latest version, I just haven’t updated the info. I will do this now.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Problème avec la version 1.12This should now been resolved with version 1.12.1
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Problème avec la version 1.12Thanks for reporting this. It looks like this is an issue with PHP Minify. I have created a new issue for it here: https://github.com/matthiasmullie/minify/issues/356
Forum: Plugins
In reply to: [Merge + Minify + Refresh] JS/CSS push ain’t working properlyAhh thats good. Some other plugin must be outputting content before the header request can be set.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] JS/CSS push ain’t working properlyAre you able to provide your site url?
Forum: Plugins
In reply to: [Merge + Minify + Refresh] JS/CSS push ain’t working properlyHi Andy,
Is your site behind a CDN or some other sort of caching?