Changing the WooCommerce coupon text in cart and checkout pages

Woocommerce Change Coupon Code Text

…add_filter( ‘woocommerce_cart_totals_coupon_label’, ‘bt_rename_coupon_label’,10, 1 ); add_filter( ‘woocommerce_checkout_coupon_message’, ‘bt_rename_coupon_message_on_checkout’ ); /** * WooCommerce * Change Coupon Text * @param string $text * @return string * @link https://gist.github.com/maxrice/8551024 */ function bt_rename_coupon_field_on_cart( $translated_text,…

Read More

Sort WooCommerce products from product category to be last in cart order

Woocommerce Cart Product Category Last

…to be last order in cart * @link https://stackoverflow.com/questions/65800801/sort-specific-product-category-cart-items-at-the-end-in-woocommerce */ function product_category_cart_items_sorted_end() { $category_terms = __(‘box’); // Here set your category terms (can be names, slugs or Ids) $items_in_category =…

Read More

Sort WooCommerce products in cart order by price

Sort Woocommerce Cart Order By Price

…array. add_action( ‘woocommerce_cart_loaded_from_session’, ‘prefix_cart_order_prod_cat’ ); /** * WooCommerce – sort cart order by price * @link https://stackoverflow.com/questions/17194899/woocommerce-cart-page-display-products-order-by-product-price/57136404#57136404 */ function prefix_cart_order_prod_cat() { $products_in_cart = array(); // Assign each product’s price to…

Read More