fuzzyfluid
Forum Replies Created
-
Hey there thanks for the reply I was awway. Could you give me some detail on empty user role? I’d appreciate it and thanks for responding,
Forum: Plugins
In reply to: [Autoptimize] Render Blocking: 3 Autoptimize PHP files?If I check: inline “above the fold CSS” while loading the main autoptimized CSS only after page load, does that defer it even though I don’t have any above the fold CSS to enter or is there another way to solve the original issue in the first post?
Forum: Plugins
In reply to: [Cloudflare] Confirming Cloudflare Usage? Doesn’t seem like it.Can anyone check for me properly as I;m still not seeing CF in the header response–
Forum: Fixing WordPress
In reply to: Woocommerce Spinner Top of Page?Got help. For anyone interested: https://www.ads-software.com/support/topic/woocommerce-checkout-spinner-top-of-page/
Forum: Fixing WordPress
In reply to: Prevent Paypal buttons in MinicartGot help, thanks!
For anyone looking: https://www.ads-software.com/support/topic/prevent-paypal-buttons-in-minicart-2/
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Checkout Spinner Top of Page?Thanks for the reply! I ultimately used
.blockUI.blockOverlay { background-color:#000000; position: fixed !important; }
to force the overlay. Thanks!
Forum: Plugins
In reply to: [WooCommerce] Prevent Paypal buttons in MinicartFollowing up here, i did dequeue to Disable Cart Fragmentation on Front Page due to speed issues.I hate not having it load. I ultimately hid the buttons on all pages with
body .widget_shopping_cart .paypal-button{
display:none;
}is there a way to keep the cart fragments and maybe load it after full page load as i also hid the overlay which is why you do not see it on my homepage.
.home #main-navigation li.nav-cart .nav-cart-content {
display: none!important;
}Forum: Plugins
In reply to: [WooCommerce] Prevent Paypal buttons in Minicartjust to clarify, im hoping to unload it completely from the hompage, not just display:none on the button.
Forum: Fixing WordPress
In reply to: Woocommerce Spinner Top of Page?Sure thanks, I’ll check over there,
Forum: Fixing WordPress
In reply to: Valid SSL, Really Simple SLL, Chrome still says not fully secureThanks BCWorkz! This helped troubleshoot for me.
It seemed everyone had the lock except me on chrome. I did have the lock on Firefox but was annoyed I did not get the lock but instead the I symbol.
After removing and adding an SSL Certificate a few times, I could not understand why chrome still gave me the informative ‘I’ symbol for my homepage. This resulted in the site not being fully secure even though it showed a valid certificate.
I reset settings, and still same issue. I uninstalled chrome, and still same issue. The lock would not appear. Finally I found an article that had 4 suggestions and one of them was to rename the site url in WordPress Settings -> General. Obviously I did so and then could not access my home page or admin. I went to the wp_options table in my DB and changed the url back. This surprisingly fixed the issue and now have the lock on chrome.
Forum: Fixing WordPress
In reply to: TotalCache & CDN: 10 Sec Load on 800KB?Wanted to come back and correct the solution here. There’s nothing wrong with Simple Real SSL plugin.
Two different issues were resulting in excessive load times. Using Cloudflare and my host provider, I still needed too add a www to non-www redirect in my htaccess since the SSL certificate was for “flashbackchamps.com” and not https://www.flashbackchamps.com. I know that shouldn’t make a difference but t resulted in one more request when individuals visited https://www.flashbackchamps.com for a SSL check on https://flashbackchamps.com.
The second issue and this was resulting in about 5 seconds delay was woo commerce Ajax call for woocommerce_cart_fragments. I had to add to the bottom of my themes functions.php the following:
/** Disable Ajax Call from WooCommerce */
add_action( ‘wp_enqueue_scripts’, ‘dequeue_woocommerce_cart_fragments’, 11);
function dequeue_woocommerce_cart_fragments() { if (is_front_page()) wp_dequeue_script(‘wc-cart-fragments’); }This woo commerce Ajax call is well-documented (https://www.webnots.com/fix-slow-page-loading-with-woocommerce-wc-ajaxget_refreshed_fragments/). Even though this does remove the 5 second load, I do find the cart now wonky. Looking to fix that issue separately, but figured I’d share.
I’ve since gone back to using RELA SIMPLE SSL plugin with no speed issues.
Forum: Fixing WordPress
In reply to: Valid SSL, Really Simple SLL, Chrome still says not fully secureI question if cloudflare is even being leveraged since a lot of my css, js has total cache headers and no-cache set. So i dont know if cloudflares always use https and Automatic HTTPS Rewrites is being leveraged —
Forum: Fixing WordPress
In reply to: TotalCache & CDN: 10 Sec Load on 800KB?All right guys, figured it out. At first i deactivated HTTPS and the speeed improvement was ridiculous. Less than 1 second on 800KB. Reactivated HTTPs, and boom back to the same speed issue.
Finally realized Real Simple SSL Plugin was the issue. After I deactivating that,I let cloudflare handle the SSL, along with enabling HSTS.
————-
This specific test was done on April 16. The web page took 424 ms to load, used 33 requests, and weighed in at 874.3 KB.The Google Page Speed performance grade for this web page is 84/100.
There’s a ton of more information you can check out here: https://tools.pingdom.com/#5c6108b210400000
————-Forum: Fixing WordPress
In reply to: TotalCache & CDN: 10 Sec Load on 800KB?Thanks f or the response sabinooo. I’ll solve and follow up for those who may be having the same issue. If anyone else has any ideas, please let me know,
Forum: Fixing WordPress
In reply to: TotalCache & CDN: 10 Sec Load on 800KB?I checked and on cloudflare i have set :Full (Encrypts end-to-end, using a self signed certificate on the server).
Some additional Settings:
SSL: Flexible (Just changed this now)
Always USE Https: OnHttp Strict Transport Security (HSTS)
Status: on
Max-Age:0
Include subdomains:0
Preload:0Opportunistic Encryption: On
TLS 1.3: On
Automatic Http Rewrites: OnI do believe the HTTPs is causing the slowdown. Lazy Loading enabled and confirmed, cloudflare for CDN, autooptimize on css/js. Such a shame, anny additioanl insihgts?
- This reply was modified 4 years, 7 months ago by fuzzyfluid.
- This reply was modified 4 years, 7 months ago by fuzzyfluid.