Search results for: woocommerce
Make Product Non Purchasable for Wholesale Customer if Product Stock is Less Than Certain Amount
This snippet will allow you to make a product unavailable for purchase by wholesale customers if…
Buy with Prime
add_action( ‘woocommerce_after_add_to_cart_form’, ‘QL_add_text_under_add_to_cart’ ); function QL_add_text_under_add_to_cart () { global $product; ?>
Buy with Prime
add_action( ‘woocommerce_after_add_to_cart_form’, ‘QL_add_text_under_add_to_cart’ ); function QL_add_text_under_add_to_cart () { global $product; ?>
How To Allow Shop Manager to Manage Feeds?
#-- Allow Shop Manager to Access Product Feed Menus --# function allow_feed_menus_to_shop_manager( $capability ) { if…
Change a currency symbol AMD to Դրամ
/** * Change a currency symbol */ add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2); function change_existing_currency_symbol( $currency_symbol, $currency )…
product attributes on hover
a snippet to show product attributes in product archive grid layout
Remove Clear Link @ Variable Single Product Page
Remove clear link from attribute from single product page
Disable Schema Output for WooCommerce products
This filter can be used to Disable Schema Output for WooCommerce products.
تغيير عمله
/** * Change a currency symbol */ add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2); function change_existing_currency_symbol( $currency_symbol, $currency )…
Livrare 20kg plus
Cheltuielile de livare nu sunt incluse în prețul total la comenzile care depășesc 20 kg !…
Remove Gutenberg Blocks CSS
add_action( 'wp_enqueue_scripts', function () { wp_dequeue_style( 'wp-block-library' ); wp_dequeue_style( 'wp-block-library-theme' ); // Remove WooCommerce block CSS…
exclude meta key from duplicating products
exclude meta key from duplicating products
Custom Heading above Qty (Woocommerce)
let qty = document.querySelector(".e-atc-qty-button-holder"); let text = ` How many card you’re planning to purchase? Choose…
AffiliateWP - Force Query String Format for Affiliate Deep Links
Fixes redirect loops caused by AffiliateWP's pretty deep link format (/page/ref/username/) conflicting with WooCommerce or custom…
WWOF v3: Force "View Cart" link in the success side-popup to open in the same tab
/** * WWOF v3: Force "View Cart" link in the success side-popup to open in the…