Search results for: woocommerce

Сортировка методов доставки СДЭК по стоимости, от дешевых к дорогим

Сниппет предназначен для сортировки методов доставки СДЭК. Сортировка происходит от самых дешевых к самым дорогим.

Add column Product type in WooCommerce

Add a column in the product list to differentiate the type of product

Masterstudy LMS - Woocomerce Create Account After Payment

Gửi email tài khoản sau khi đã "completed" đơn hàng trên Woocommerce (Cartflows) -> kích hoạt…

Use a WooCommerce Product Attribute as the Brand in Product Schema

This filter enables using a WooCommerce Product Attribute as the Brand in our Product Schema. Note:…

10+

Auto Generate Virtual Coupon After a Customer Completed an Order

/** * Generate a virtual coupon when order is completed. * * @param int $order_id Order…

WhatsApp Button to WooCommerce Single Product Pages

Display a WhatsApp button on WooCommerce single product pages. You can customize color and shape of…

remove 'X' remove button in cart

.woocommerce table.shop_table .product-remove { text-align: center !important; display: none; }

REMOVE PRODUCT LINKS FROM YOUR SHOPPING CART

add_filter( 'woocommerce_cart_item_permalink', 'custom_remove_cart_product_link', 10 ); function custom_remove_cart_product_link() { return __return_null(); }

Set Minimum total purchase amount

add_action( 'woocommerce_check_cart_items', 'required_min_cart_subtotal_amount' ); function required_min_cart_subtotal_amount() { // HERE Set minimum cart total amount $minimum_amount =…

Remove Gutenberg Blocks Library CSS

Remove Gutenberg Block Library CSS from loading on the frontend

login redirect changed from default my account page to home page

/** * WooCommerce My Account Page login Redirect */ add_action( 'wp_login', 'owp_redirect_after_logout' ); function owp_redirect_after_logout() {…

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 )…

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…

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

1 4 5 6 7 8