launchinteractive
Forum Replies Created
-
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Plugin conflictHi,
To ignore those files have a look at the path for them in the logs. If you include the full path that is listed there then it should ignore those files.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Plugin conflictHi Dan,
Thats very strange for it to disappear. Have you tried uploading the worldcountries zip with MMR disabled?
Forum: Reviews
In reply to: [Merge + Minify + Refresh] Magic!!!Thanks for your feedback!
Forum: Plugins
In reply to: [Merge + Minify + Refresh] MMR not minifying JS/CSS in merged filesOk, no worries.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] not working With ZAP themeHi,
It looks like your using another caching plugin. Did you have it enabled when you tried MMR? Its possible that they were conflicting with each other.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Not reducing number of js/css files?Hi,
Are you able to send me a link to your site?
Does your site have a CDN? It might not have updated yet?Forum: Plugins
In reply to: [Merge + Minify + Refresh] Css Minify not workingNo worries. I’m glad its working!
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Css Minify not workingHi Vanessa,
I’ve just tested a clean install of WordPress (version 4.8.1) and the latest version of MMR (1.8.7) and it works fine. Have you enabled any other plugins or themes? I’m using the twenty seventeen theme.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Css Minify not workingHi Vanessa,
What other plugins do you have installed? It sounds like you have a conflict with another plugin.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] JS ordering/asyncAlso, adding async or defer can be handled using this code:
function add_async_attribute($tag, $handle) { if ( !in_array($handle, array('js-0','js-1','jquery')) ) { return $tag; } return str_replace( ' src', ' async="async" src', $tag ); } add_filter('script_loader_tag', 'add_async_attribute', 10, 2);Note: You will need to modify the handles to match your site.. MMR creates handles like this: js-[0 BASED POSITION]
Also, if you want jquery to load before your script you should add jquery as a dependancy in wp_enqueue_script/register_script
Forum: Plugins
In reply to: [Merge + Minify + Refresh] JS ordering/asyncHi, MMR lets WordPress handle the ordering of the includes.. but you can modify it by dequeuing and enqueuing in your functions file. There is also some other plugins that allow you to re-order your scripts.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] All options disabled, css and js broken anywayHi,
With the four checkboxes checked MMR is still processing the files so its possible that its causing issues. If you add each include to the ignore textbox then it shouldn’t be doing anything.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Dynamicly turn of mmr via fitlersHi Ruben,
Currently there isn’t a way to disable MMR without deactivating the plugin. If you would like to submit a patch for this we will add it in.
gzip was added by another contributor. It wouldn’t be hard to convert to use gzencode so if you would like to rewrite it and submit a patch that would be great. We don’t tend to use this feature on our sites.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Options not workingHi,
If you expand the log you will see the path to the included javascript files. Copy that path into the ignore field and that should do it.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Change host for link preloadAhh great. I’m glad you sorted this.
I think your right.. we should update the documentation. How do you think we should word this?