sigurdurg
Forum Replies Created
-
Forum: Reviews
In reply to: [Google Webfont Optimizer] Sorry, doesn't workInteresting.
Sorry for that :/
Did you take a screenshot so I can do a debug?
Forum: Plugins
In reply to: [Enable Media Replace] Only replaces full size of image, but not other sizesFor anyone interested, I fixed “upload.php” to properly replace all images, not just the full size.
It uses the same resolution as the previous image (Regular Expression magic).
Here’s the “paste” for upload.php
https://pastebin.com/jf8k8EKuForum: Plugins
In reply to: [Enable Media Replace] not updating img src for resized imagesFor anyone interested, I fixed “upload.php” to properly replace all images, not just the full size.
It uses the same resolution as the previous image (Regular Expression magic).
Here’s the “paste” for upload.php
https://pastebin.com/jf8k8EKuForum: Plugins
In reply to: [W3 Total Cache] Found 2 bugs in MinifyHey, if you’re interested, I am opening a early-bird special for an online course in making your WP website fast ..
I cover all sorts of things, such as configuring W3 Total Cache.If you’re interested, go here – [Link removed – these forums are not the place to promote your own commercial services]
Forum: Plugins
In reply to: [W3 Total Cache] Found 2 bugs in MinifyThe mobile version doesn’t appear probably because of the CSS minify bug.. (your website is responsive – meaning it will resize according to how big your screen is, so for mobile, it will adjust everything for a mobile)
I would look into configuring Minify by hand.
Forum: Plugins
In reply to: [W3 Total Cache] Found 2 bugs in MinifyI had this problem with my client’s website, and that’s included in bug #2 in the original post.
When Minify is fixing the css, it grabs (by fault, thus a bug) the last absolute URL and applies it to the rest of the relative URL’s.
What that means is, when you have google fonts, and plugins in your setup, the CSS will point to your images on google’s servers – as if they are your own.
Of course Google doesn’t store the images that are on YOUR blog ??The quick-fix for that is to set minify to manual and order the CSS files so all external CSS is loaded last.
What’s your site?
Forum: Plugins
In reply to: [W3 Total Cache] Found 2 bugs in MinifyAs an added note:
I added
′case (isset($_SERVER[‘HTTP_X_FORWARDED_PROTO’]) && (int) $_SERVER[‘HTTP_X_FORWARDED_PROTO’] == ‘https’):′
in inc/define.php wp_is_https() function (last case) to fix W3 Total Cache from breaking http / https when I have a load balancer that handles the SSL.Forum: Plugins
In reply to: [W3 Total Cache] Found 2 bugs in MinifyI would take a look at the minify. Do you set it to auto or manual?
Is your Javascript broken? (You can use chrome’s developers console)