Custom Taxonomy Pricing For Individual Product
-
Hi friends,
I have used the following code for custom pricing for some products. Every thing is fine. But the products are not adding to the cart page.
add_filter(‘woocommerce_get_price’,’change_price’, 10, 2);
add_filter(‘woocommerce_get_regular_price’,’change_price’, 10, 2);
add_filter(‘woocommerce_get_sale_price’,’change_price’, 10, 2);function change_price($price, $productd){
if($_SESSION[‘team_id’]==$wst_team_id && !empty($wst_team_product_price)):
if($productd->id == $wst_product_id):
return $wst_team_product_price;
endif;
else:
return $price;
endif;
}Thanks,
Satya
- The topic ‘Custom Taxonomy Pricing For Individual Product’ is closed to new replies.