In Woocommerce I have a variable products with some variations and some variation has its own REGULAR price and SALE price.
Also I have three types of users with separated prices:
- Regular Customer,
- Wholesaler-1,
- Wholesaler-2.
I would like when user:
- is logged in,
- Customer: the sale price will be the active price but also show the regular price.
- Wholesaler 1 and 2: the custom price will be the active price but also show the regular price.
- is not logged in, the regular price will be the active price.
Inspired mainly by Enable Wholesale prices in Woocommerce 3 answer code, here is my code attempt:
// Add custom field to VARIATIONS option pricing
add_action( 'woocommerce_variation_options_pricing', 'w4dev_add_variation_options_pricing', 20, 3 );
function w4dev_add_variation_options_pricing( $loop, $variation_data, $post_variation )
{
$value1 = get_post_meta( $post_variation->ID, '_wholesale_price_1', true );
$value2 = get_post_meta( $post_variation->ID, '_wholesale_price_2', true );
$symbol = ' (' . get_woocommerce_currency_symbol() . ')';
$key_1 = '_wholesale_price_1[' . $loop . ']';
$key_2 = '_wholesale_price_2[' . $loop . ']';
echo '<div class="variable_wholesale-price"><p class="form-row form-row-first">
<label>' . __( "Big Dealer Price", "woocommerce" ) . $symbol . '</label>
<input type="text" size="5" name="' . $key_1 .'" value="' . esc_attr( $value1 ) . '" />
</p></div>';
echo '<div class="variable_wholesale-price"><p class="form-row form-row-first">
<label>' . __( "Small Dealer Price", "woocommerce" ) . $symbol . '</label>
<input type="text" size="5" name="' . $key_2 .'" value="' . esc_attr( $value2 ) . '" />
</p></div>';
}
// Save "Wholesale Price" custom field to VARIATIONS
add_action( 'woocommerce_save_product_variation', 'w4dev_save_product_variation_wholesale_price', 20, 2 );
function w4dev_save_product_variation_wholesale_price( $variation_id, $i )
{
if ( isset( $_POST['_wholesale_price_1'][$i] ) )
{
update_post_meta( $variation_id, '_wholesale_price_1', floatval( $_POST['_wholesale_price_1'][$i] ) );
}
if ( isset( $_POST['_wholesale_price_2'][$i] ) )
{
update_post_meta( $variation_id, '_wholesale_price_2', floatval( $_POST['_wholesale_price_2'][$i] ) );
}
}
// Variable product price range
add_filter('woocommerce_variation_prices_price', 'w4dev_custom_variation_price', 90, 3 );
add_filter('woocommerce_variation_prices_regular_price', 'w4dev_custom_variation_price', 90, 3 );
add_filter('woocommerce_product_variation_get_regular_price', 'w4dev_custom_price', 90, 2 );
add_filter('woocommerce_product_variation_get_price', 'w4dev_custom_price', 90, 2 );;
function w4dev_custom_variation_price( $price, $variation, $product )
{
if (is_user_logged_in())
{
$level = get_user_meta(get_current_user_id(), 'wholesale_level', true);
switch ($level)
{
case 1: $key = '_wholesale_price_1'; break;
case 2: $key = '_wholesale_price_2'; break;
default:
if( get_post_meta( $variation->get_id(), '$key', true ) )
$price = get_post_meta( $variation->get_id(), '$key', true );
}
}
else
{
return $price;
}
return get_post_meta($variation->get_id(), $key, true);
}
This is showing only regular and sale price instead of users specific prices.