Hi Martijn,
You can display a different price if you know a little of PHP. You can use hooks, for example:
add_filter('woo_price_calculator_calculate_price','cmw_custom_price',0,4);
function cmw_custom_price($price,$product_id,$simulator_id,$data){
if(is_user_logged_in()){
$price = $price*3;
}
return $price;
}
With this simple piece of code you can multiply the price by 3 if the user is logged in, otherwise the default price if the user is not logged in.
If you need a more complex code and you don’t have a good PHP knowledgement, you can ask us a quote to “https://altoswebsolutions.com/contact-us”
Best regards,
Enrico