skip to Main Content

Cart Page is Empty When Item is Removed – Woocommerce

I wanted to design my own template for Cart Page when the cart is empty. I have added the below snippet to accomplish. add_action( 'woocommerce_cart_is_empty', 'custom_empty_cart_message', 10 ); remove_action( 'woocommerce_cart_is_empty', 'wc_empty_cart_message', 10 ); remove_action( 'woocommerce_cart_item_removed', 'action_woocommerce_cart_item_removed', 10); add_action( 'woocommerce_cart_item_removed', 'custom_empty_cart_message',…

VIEW QUESTION

Disable multiple size image generation for Woocommerce uploaded images only

I have a theme that generates 11 different sized images for every image uploaded. set_post_thumbnail_size( 220, 150, true); add_image_size( 'redmag-blog-list', 491, 280, true); add_image_size( 'redmag-blog-list-large', 614, 320, true); add_image_size( 'redmag-sidebar', 100 ,100, true); add_image_size( 'redmag-blog-grid', 496, 290, true); add_image_size( 'redmag-blog-tran',…

VIEW QUESTION
Back To Top
Search