Scott
Forum Replies Created
-
I too have this issue. If the container is set to off, function which runs after the datalayer does not correctly disable tag placement.
Also experiencing this. It has to do with the variable $output_container_code on line 1102 in frontend.php remaining true. The below change temporarily resolves the issue and can likely involve a few other changes to the following IF statements.
$output_container_code = GTM4WP_PLACEMENT_OFF === $gtm4wp_options[ GTM4WP_OPTION_GTM_PLACEMENT ] ? false : true;
Forum: Plugins
In reply to: [Splitit] Upstream and FlexFields Firing on All PagesBy adding the following code to our child theme functions.php, the flex fields are only loaded when needed. Is there a handle that loads the upstream messaging as well? I can’t seem to find it.
Added to
functions.php
... // Splitit if (!is_shop() && !is_product() && !is_cart() && !is_checkout() && !is_wc_endpoint_url()) { wp_dequeue_script('flex_field_js'); wp_dequeue_style('flex_field_css'); } ...
Forum: Plugins
In reply to: [WPC Share Cart for WooCommerce] How long will share cart link be validAlso curious as to link validity length. Is there a method to purge them?
Thanks!Forum: Plugins
In reply to: [Conditional Payments for WooCommerce] No shipping method in the orderNow having the same issue as well. Any updates?
- This reply was modified 4 years, 8 months ago by Scott.
Forum: Plugins
In reply to: [WooCommerce] Paypal checkout not workingJust ran into this very issue. Would like to second “WP Social” as the conflict.
Forum: Plugins
In reply to: [Product GTIN (EAN, UPC, ISBN) for WooCommerce] Using MPNWould just like to add I just found the “Schema & Structured Data for WP & AMP” plugin was also disrupting my schema data and GTIN from being passed correctly. Once removed all is back to normal.