Woocommerce には、いくつかのバリエーションを持つ可変製品があり、いくつかのバリエーションには独自の正規価格とセール価格があります。
また、料金が分かれている 3 種類のユーザーがいます。
- 常連のお客様、
- 卸売業者-1、
- 卸売業者-2。
ユーザーの場合:
- ログインしている、
- 顧客: セール価格は有効価格ですが、通常価格も表示されます。
- 卸売業者 1 および 2: カスタム価格は有効価格ですが、通常価格も表示されます。
- ログインしていない場合は、通常価格が有効価格になります。
主に Woocommerce 3回答コードで卸売価格を有効にすることに触発されて、ここに私のコードの試みがあります:
// 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);
}
これは、ユーザー固有の価格ではなく、通常価格とセール価格のみを表示しています。