launchinteractive
Forum Replies Created
-
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Suggestion: Disable in adminHi Andrew,
Currently we don’t check these urls as a regular expression but shouldn’t be too hard to add. I’ll make a note of it to add to the next release.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Fatal Error where scripts in footer should beHi Andrew,
Have you tried it with the 2016 theme?
Also, do you have any other caching plugins enabled?Forum: Plugins
In reply to: [Merge + Minify + Refresh] Js comments not stripped and minifiedI have had some sites not playing nice with WordPress Cron. You can investigate if the cron events are being added by installing the wp-crontrol plugin or try using WP Cron Alternative by adding this to your wp-config.php: define(‘ALTERNATE_WP_CRON’, true);
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Js comments not stripped and minifiedHi evette23. MMR will merge the files first and then minify them in the background. Once the minification process is finished then the minified versions will be spat out. You can see when the process is queued and when it is finished on the settings page.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Accessing scripts loaded by the pluginHi John,
MMR inspects all the scripts that has been enqueued and attempts to merge the files all into one. Once it has a list of files to merge it then removes their handles from wp_scripts and adds a new handle which is a new file containing the contents of all the merged files.
That means that you can’t access the script handles once MMR has run because its likely to change the handles (unless its an external script).
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Feature request – async & deferHi John,
We could certainly add defer and async support but I wanted to confirm how you would prefer this to work. MMR is designed to merge scripts all into one file.. with that in mind, would you want to defer the lot or only some files?
Forum: Plugins
In reply to: [Merge + Minify + Refresh] 6.5GB in mmr directoryThis is now resolved. The error was with the gantry 4 theme plugin. It was adding a random int to the css handle on every page load.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] 6.5GB in mmr directoryYep, if you can email me the login I’ll take a look. Click on our username and then click on the email link on our website or use the contact form.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] 6.5GB in mmr directoryI’d say there is a plugin conflict here.. maybe the hash is changing on every reload causing new files to be created every time. Are you able to check if you get the same hash after a normal reload?
Forum: Plugins
In reply to: [Merge + Minify + Refresh] 6.5GB in mmr directoryHow quickly does it get to 6.5GB?
MMR creates a hash of the filenames that it merges. It deletes old files based on this. If you are adding new CSS/JS files or renaming the old ones the hash will change. Its possible these files aren’t being cleared due to this.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] 6.5GB in mmr directorywowzers, thats crazy. It certainly should be. What happens to that directory when you purge all files?
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Please seperate CSS on MulitsiteHi Myar, We haven’t done much multisite testing. I’ll have a play and see if we can fix this.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] minified javascript corruptedThanks, It looks like its a bug with PHP Minify. I’ve submitted a error here: https://github.com/matthiasmullie/minify/issues/133
a workaround is to change your code to
f(args.message instanceof Array){a
as the space doesn’t get stripped in that case.Forum: Plugins
In reply to: [Merge + Minify + Refresh] minified javascript corruptedHi JHooper. Are you able to check if your using Closure or PHP Minify for compilation? You can check the logs for a notice about this.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Merge CSS filesahh ok, I’ll see if I can explain what you need to look for:
1. have a look in functions.php in your theme and see if there are any wp_enqueue_style function calls. If you can’t find any than the developer has done this in another file so your going to have to try and find which file. If you can’t find where the files are being enqueued do a search through the plugin files for “wp_enqueue_style” or for the filename of the stylesheet you want to re-order.
2. Once you find the the enqueue functions see if you can re-order them without breaking anything.
3. If you still can’t work it out and your happy for me to have a look send me the wordpress details and I’ll see if I can sort it out for you.