Woocommerce – remove sale price field from dashboard [closed]

You cannot remove the field using a code but you can disable using the sale price across the store. To disable sale price function custom_wc_get_sale_price( $sale_price, $product ) { return $product->get_regular_price(); return $sale_price; } add_filter( ‘woocommerce_get_sale_price’, ‘custom_wc_get_sale_price’, 50, 2 ); add_filter( ‘woocommerce_get_price’, ‘custom_wc_get_sale_price’, 50, 2 ); To hide this field, you can use a CSS … Read more

Woocommerce: Get Cart ID

Why this question down-voted? I think it is can be very useful. Unfortunately WooCommerce have not feature like this. But you can: Set cookie with unique id, when user added something to cart Create db table with cookie_cart_id and items, and update this table when user change items in cart. When user create order – … Read more