All posts by Munendrarajput

Show Only the Lowest Price for Variable Products
September 14, 2023

Show Only the Lowest Price for Variable Products

// Show only the lowest price (hide the second/highest price) for variable products add_filter( ‘woocommerce_variable_price_html’, ‘hide_variable_product_price_range’, 10, 2 ); function hide_variable_product_price_range( $price, $product ) { // Get all variation...

Hide specific product from shop and specific category
September 14, 2023

Hide specific product from shop and specific category

add_action( ‘pre_get_posts’, ‘hide_specific_products’ ); function hide_specific_products( $query ) { if ( ! is_admin() && $query->is_main_query() && ( is_shop() || is_product_category( ‘shoes’ ) ) ) { $excluded_products = array( 123,...