I am trying to display sale prices to users that enter the website with the following link www.example.com?sale and show regular prices to the rest of users. The code below does the job for single products, sale price is shown only to users with this url www.example.com?sale, but on car it switches back to regular price. And only works for single products. I'm pretty new with woocommerce and php, hope someone can give me a hand with this. Thanks so much for your help!
function custom_wc_get_sale_price( $sale_price, $product ) {
if (isset($_GET['sale'])) {
return $sale_price;
} else {
return $product->get_regular_price();
}
}
add_filter( 'woocommerce_product_get_sale_price', 'custom_wc_get_sale_price', 50, 2 );
add_filter( 'woocommerce_product_get_price', 'custom_wc_get_sale_price', 50, 2 );
You need to set this url variable to WC session to avoid loosing it when Url change:
Code goes in functions.php file of the active child theme (or active theme). Tested and works.