sanderrrrr
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] wc-image-regeneration is stuck in loopHi there,
thank you for the follow-up.
By increasing the max-memory I was able to resolve the loop. I am still not sure why it occurred but for now the memory-limit seems to be related to the issue.Forum: Plugins
In reply to: [WooCommerce Google Ads Dynamic Remarketing] gtag + GTMAnd update 3:
when you disable the gtag, it will throw an error that the gtag is missing while i have implemented GTM. So it seems those are not compatible/interchangeable. Is there a way to have the plugin use the GTM code instead of looking for the gtag?Forum: Plugins
In reply to: [WooCommerce Google Ads Dynamic Remarketing] Disable wgdr-frontend.cssI have done this myself using:
wp_dequeue_style('wgdr');//remarketing tag
but might be nice feature of plugin.
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Conditional loading on product pagesHello,
it seems that you are still loading this plugin on every single page, even when there is no products whatsoever. Take for example our homepage which is marked by Google to have an oversize DOM element. Looking at it, this is your plugin. See the code below. Why are you loading this everywhere; and is there a way to make this better? There is really no use in loading this plugin everywhere, just bloating up the code and slowing down the website. Hope you can assist.
<body class="home page-template-default page page-id-8405 theme-salient woocommerce-js woo-variation-swatches woo-variation-swatches-theme-salient-child woo-variation-swatches-theme-child-salient woo-variation-swatches-style-squared woo-variation-swatches-attribute-behavior-blur woo-variation-swatches-tooltip-enabled woo-variation-swatches-stylesheet-enabled nectar-auto-lightbox original wpb-js-composer js-comp-ver-6.2.0 vc_responsive using-mobile-browser mobile" data-footer-reveal="false" data-footer-reveal-shadow="none" data-header-format="default" data-body-border="off" data-boxed-style="" data-header-breakpoint="1000" data-dropdown-style="minimal" data-cae="linear" data-cad="650" data-megamenu-width="contained" data-aie="none" data-ls="none" data-apte="standard" data-hhun="0" data-fancy-form-rcs="default" data-form-style="default" data-form-submit="default" data-is="minimal" data-button-style="default" data-user-account-button="false" data-flex-cols="true" data-col-gap="default" data-header-inherit-rc="false" data-header-search="true" data-animated-anchors="true" data-ajax-transitions="false" data-full-width-header="true" data-slide-out-widget-area="true" data-slide-out-widget-area-style="slide-out-from-right" data-user-set-ocm="off" data-loading-animation="none" data-bg-header="false" data-responsive="1" data-ext-responsive="true" data-header-resize="0" data-header-color="custom" data-transparent-header="false" data-cart="true" data-remove-m-parallax="1" data-remove-m-video-bgs="" data-m-animate="0" data-force-header-trans-color="light" data-smooth-scrolling="0" data-permanent-transparent="false">
Forum: Plugins
In reply to: [WebwinkelKeur: Webshop keurmerk & reviews for WordPress] Loads over 20 filesHi Albert,
unfortunately have not heard since.I looked into this once again.
Running some test in GTmetrix.
Simply disabling this plugin will decrease the number of requests by 16 (!).
Page loading time decreased by a full 0.5-0.8 seconds.
Page speed ranking increased with 3% and yslow by another 4%.Look at the time waterfall https://prnt.sc/spykv8.
That’s actually 700 ms + 800 ms + 140 ms = 1.5 second.Those numbers are really unheard of for any plugin, let alone a relative simple plugin. I have decided to disable this plugin for now and look for alternatives. Hopefully a better version of this plugin will appear in the near future.
Forum: Plugins
In reply to: [WooCommerce Google Ads Dynamic Remarketing] gtag + GTMUpdate: I spoke too soon.
Just noticed that in your plugin you offer gtag Deactivation.
If i activate this, will your plugin use the GTM implemented code instead?
Or does it really need gtag?OK I will look into the google part thank you.
—But I am using the newest version of your plugin and the part below is still added:
adTribesID=ac3415c014ecd59edf473638978c7010%7Cadtribes%7C123008
So it seems t be active in your new plugin as well
Hi there, thank you for the quick response!
I am using version 8.2.3; I assume that is not what you mean with and old version?That log file is from yesterday, so that’s quite recent. SO that seems to be still active.
—
Could you perhaps elaborate on the part that is added by Google? Is that the shopping campaign? Is there any way to shorten that?Forum: Plugins
In reply to: [Upsell Order Bump Offer for WooCommerce] Show after order-buttonThanks! Great service.
Are you expecting to release this as a general WP-plugin update?
Or only via Github?Forum: Plugins
In reply to: [Upsell Order Bump Offer for WooCommerce] Show after order-buttonIs this a setting within the ‘global settings’ , or would this require some customization?
Would you have a code suitable for placing in functions.php of the child theme?Forum: Plugins
In reply to: [Coinbase Commerce Payment Gateway for WooCommerce] Hide some icons on mobileTo answer my own question:
.payment_method_coinbase img:nth-child(1){
display:none;
}Forum: Plugins
In reply to: [WebwinkelKeur: Webshop keurmerk & reviews for WordPress] Loads over 20 filesThanks Albert, let me know if I can help with anything.
- This reply was modified 5 years ago by sanderrrrr.
Forum: Plugins
In reply to: [WebwinkelKeur: Webshop keurmerk & reviews for WordPress] Loads over 20 filesIt is loaded async, but all files are still loaded on first view.
So whether you click somewhere or not, all files are loaded, including double images and irrelevant scripts.Also a weird item; if you open google developer tool and scroll all the way down. The foldable Webwinkelkeur snippet actually shows at the footer. I suppose all that is loaded but hided. Why load these things if not needed?
Thank you John.
I believe our host actually has those caches already activated, but was wondering what that message mans. There seems to be more questions on this forum but not many clarity.Is there a reason this plugin specifically mentions APCu? Or is it also checking for Memcached and Redis?
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Conditional loading on product pagesThe code below seemed to fix it. I had to add a priority in order to make this work:
add_action( 'wp_enqueue_scripts', 'custom_swatches_script_conditional_loading', 99 ); function custom_swatches_script_conditional_loading(){ // Edit page IDs here if (! is_product()) { wp_dequeue_style('woo-variation-swatches'); // Dequeue CSS file. wp_dequeue_style('woo-variation-swatches-theme-override'); // Dequeue CSS file. wp_dequeue_style('woo-variation-swatches-tooltip'); // Dequeue CSS file. wp_dequeue_script('woo-variation-swatches'); // Dequeue JS Script file. } }
===
Does your suggestion is preferred to the code posted here?- This reply was modified 5 years, 1 month ago by sanderrrrr.