Location: site_wide_header
fixed headerh
frontend – cart – Disable Upsell
.woocommerce-cart .cross-sells {display:none;}Continue reading
frontend – product – image zoom
.woocommerce-product-gallery__image { pointer-events: none; }Continue reading
frontend – product – product summary – customize
.single-product .summary {width: 35%;} .single-product div.product .woocommerce-product-gallery {width: 60%; max-width: 900px;} .single-product div.product .single_add_to_cart_button {border-radius: 8px;} .entry-summary form.cart .quantity {border-radius: 8px;} .single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {display:none;}Continue reading
Vendd Theme – Display Downloads Purchase Button
/** * Paste the following CSS into your child theme style.css file or custom CSS tool */ .vendd-price-button-container { position: static; display: block; border-top: none; box-shadow: none; } .product-link { display: none; }Continue reading
Google Tag Manager Header (copy)
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({‘gtm.start’: new Date().getTime(),event:’gtm.js’});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!=’dataLayer’?’&l=’+l:”;j.async=true;j.src=Continue reading
Disable Automatic Updates Emails (copy)
// Disable auto-update emails. add_filter( ‘auto_core_update_send_email’, ‘__return_false’ ); // Disable auto-update emails for plugins. add_filter( ‘auto_plugin_update_send_email’, ‘__return_false’ ); // Disable auto-update emails for themes. add_filter( ‘auto_theme_update_send_email’, ‘__return_false’ );Continue reading
Untitled Snippet
Hide ‘Powered By LiveChat Tab’
// Create a callback function to be run whenever the DOM changes var callback = function(mutationsList, observer) { // Check all mutations that just occured for(let mutation of mutationsList) { // If the addedNodes property has one or more nodes…Continue reading