launchinteractive
Forum Replies Created
-
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Exclude CSS and Javascript Per PageInteresting. Gonzales must be executing after MMR does its job so its unhooking wouldn’t be working. I’ll see if we can get this fixed.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] When does minification occur?Ok, I’ll mark this as resolved. Feel free to re-open if you try MMR again.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] When does minification occur?Are you running wp-cron.php via command line or on your browser? That might explain the undefined index.
We have had other cache plugins conflict in the past. Are you able to disable your other plugins and see if that resolves it?
Also are you able to paste a log of one of your files?
Forum: Plugins
In reply to: [Merge + Minify + Refresh] When does minification occur?Also, don’t put your own files in the MMR directory. They will be overwritten or deleted by the plugin.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] When does minification occur?Hi. MMR should start showing minified files within 2 minutes. It sounds like yours hasnt completed. Try purging a file and watch the logs.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] W3C Error media=””Great, I did think I could set the media type to “all” when its blank but I’m on the fence if its necessary. I’m thinking it may be an unexpected behaviour.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] W3C Error media=””Thanks cr33py,
It looks like your theme or a plugin is including the css with a blank media type. The only way I’ve managed to reproduce this is if I set a blank media type..
wp_register_style( 'test', get_template_directory_uri() . '/css/test.css', array(), 1, ''); wp_enqueue_style( 'test' );Does any of your styles show as a blank string when you disable MMR?
Forum: Plugins
In reply to: [Merge + Minify + Refresh] $style/$script_path check fails when using BedrockHey plankguy,
We’ve done some testing and made some changes. Please try the new version of MMR (1.7.5) which should resolve your issue.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] W3C Error media=””Hi cr33py. Thats an odd result.
How are you enqueuing your stylesheets?
Are you able to email me a link to your website?Forum: Reviews
In reply to: [Merge + Minify + Refresh] Works with buddypress, buddyboss, rtmediaThanks for the feedback!
Also, the css include error shows up for me when MMR is enabled or disabled.
The issue is with how CKeditor is detecting its basebath. I checked the code and CKeditor looks through the included script tags for ckeditor.js. Once it finds it then it uses its path as the root.
I’ve come up with two solutions:
1. set the window.CKEDITOR_BASEPATH manually before ckeditor.js executes:
window.CKEDITOR_BASEPATH = '/wp-content/plugins/wp-support-plus-responsive-ticket-system/asset/lib/ckeditor/';2. ignore the ckeditor.js in MMR settings: You can find your full path in the MMR logs. My full path looked like this:
http://www.siteurl.com/wp-content/plugins/wp-support-plus-responsive-ticket-system/asset/lib/ckeditor/ckeditor.js?version=8.0.4Personally, I prefer the 1st option as it keeps the requests to a minimum and is fairly trivial to add.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] php7 compatibility coming ?Hi mariodabek,
Thanks for the heads up.
This should be fixed now with version 1.7.4Forum: Plugins
In reply to: [Merge + Minify + Refresh] .gitignore not ignoring mmrcool. I’m glad to hear.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] .gitignore not ignoring mmryeah, that was my thinking.. maybe its worth adding both:
wp-content/mmr
wp-content/mmr/*If you have started tracking files you may need to remove them: http://stackoverflow.com/a/1274447/313272