elisahp
Forum Replies Created
-
Thanks for the tip Frank!
@danieliser any update at all?Hi Dan
Thanks for replying – I’ve turned autoptimize off so you can have a look. All the themes and font are still appearing in View Source despite those two popup settings being checked…
Let me know if you want me to try anything else, I can deactivate the rest of the plugins and check again if you like, except for WP super cache as this removes all its settings when I deactivate it and I think I tried that already anyway!
Let me know when you’ve looked so I can switch AO back on again too 🙂
Cheers
ElisaHi Daniel – I had this same issue a few days ago, not sure how I fixed it, just kept refreshing and clicking boxes!
Today, I have tried again – I have checked the don’t load google fonts and don’t load popupmaker themes, I’ve copied the framed border theme into my style sheet. I have saved and the boxes remain checked however my page is still loading both items. I’ve tried deactivating and reactivating, and I’ve tried deleting and deactivating all the cache plugins. My site is http://www.psych-fitness.com.
Any help appreciated!
ThanksThanks Jeffrey – I am aware lots of widgets will slow down the page in general. I also have GT Metrix, WP Total Cache and Autoptimize but thanks for the recommendations.
Just to clarify, I wondered the effect on page speed of:
1. using Widget Options and duplicating a widget to use different styling for different screen sizes,
versus
2. simply writing the different CSS for different screen sizes.How would the two options compare for page speed? Or are they basically the same.
A developer mentioned that if you use PHP for Widget Options it shouldn’t be a problem but if you use CSS it may be slower…
Thanks
ElisaForum: Plugins
In reply to: [Livemesh SiteOrigin Widgets] Grid displays incorrectly in Internet ExplorerNo worries, I figured you may have a life over the holidays!
Yes IE 11.
Sorry I got the test page name wrong up above – here is where I added your widget on its own page – http://psych-fitness.com/draft-post/
(in case you want to look at the errors in the console, it appears to be picking up WP Ultimate’s isotope version and yours for different things.)An update would be awesome thanks, would love to use both.
Forum: Plugins
In reply to: [Livemesh SiteOrigin Widgets] Grid displays incorrectly in Internet ExplorerAnother update from the WP Ultimate Grid guys – apparently Livemesh is using an older version of isotope.pkgd.min.js than they are which may be causing the problem.
Any plans to update?
CheersForum: Plugins
In reply to: [Livemesh SiteOrigin Widgets] Grid displays incorrectly in Internet ExplorerOkay so I’ve investigated by deactivating other plugins and have found the issue occurs when the WP Ultimate Grid plugin is also activated. I’m not sure if this is due to both plugins using isotope.pkgd.min.js as this seems to throw errors into my console.
I made a new page http://www.psych-fitness.com and the issue is still there even without the WP Ultimate Grid on the same page.
Any ideas if this is fixable would be greatly appreciated, I really like the looks of both plugins so don’t want to have to give one up!
CheersForum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] About Page BugAgreed, same problem here. In addition, I am getting functions.php errors if I deactivate it and reactivate other plugins.
Forum: Plugins
In reply to: [Autoptimize] JS Exclude and HTMLOk will do that thanks for your help 🙂 Hope you’re having a great Xmas.
Forum: Plugins
In reply to: [Autoptimize] JS Exclude and HTMLCool good to know thanks!
I managed to fix the HTML issue too, I had a piece of CSS defining ‘strong’ as 700 which I didn’t need any more and removed which fixed the bold problem – not sure why but whatever works!One last question – is it bad to have too much cache or minify going on?
I have Autoptimize, WP Super Cache and Cloudflare which all cache, and Autoptimize and Cloudflare also both minify I believe. I also just added LazyLoad XT which also has an option load minimized versions of js and css.Can these affect each other do you know?
Forum: Plugins
In reply to: [Autoptimize] JS Exclude and HTMLThanks for the quick reply Frank.
Further investigation reveals that yes they are being excluded i.e. when I exclude a folder, the js within that folder will show up in the ‘Network’ developer tool. However the widgets are still broken – very odd!
Another weird one on http://www.psych-fitness/blog, the slidedeck was not working properly, I excluded the Slidedeck3 folder (still broken) then excluded every piece of js in the Slidedeck3 folder (still broken) then removed all that and just ticked your try-catch wrapping box, and fixed!
I do have a bunch of errors in the Console on the Home page though with names including autooptimise and isotope.pkgd.min.js, do I need to be concerned about this?
It seems it all works now (so far!) but thought I’d let you know the weirdness!
Cheers
Forum: Plugins
In reply to: [Livemesh SiteOrigin Widgets] Grid displays incorrectly in Internet ExplorerJust an update – I was looking at optimising my site and found this code to defer parsing of javacript which I put in functions.php:
function defer_parsing_of_js ( $url ) {
if ( FALSE === strpos( $url, ‘.js’ ) ) return $url;
if ( strpos( $url, ‘jquery.js’ ) ) return $url;
return “$url’ defer “;
}
add_filter( ‘clean_url’, ‘defer_parsing_of_js’, 11, 1 );This then broke the Chrome version as well as IE so I’ve taken it out again. Not sure if this is of any use but thought I’d mention it.