Free Standard Shipping on US Orders $125+
We Ship Internationally
Please switch to English for checkout
Free Standard Shipping on US Orders $125+
We Ship Internationally
Please switch to English for checkout
function display_wholesale_price_for_wholesale_users($price, $product) { if (is_user_logged_in() && current_user_can('Wholesale')) { $wholesale_price = get_post_meta($product->get_id(), '_wholesale_price', true); if (!empty($wholesale_price)) { return wc_price($wholesale_price); } } return $price; } add_filter('woocommerce_get_price_html', 'display_wholesale_price_for_wholesale_users', 20, 2); function apply_wholesale_price_in_cart($cart) { if (is_admin() && !defined('DOING_AJAX')) return; if (is_user_logged_in() && current_user_can('Wholesale')) { foreach ($cart->get_cart() as $cart_item) { $product_id = $cart_item['product_id']; $wholesale_price = get_post_meta($product_id, '_wholesale_price', true); if (!empty($wholesale_price)) { $cart_item['data']->set_price($wholesale_price); } } } } add_action('woocommerce_before_calculate_totals', 'apply_wholesale_price_in_cart'); add_action('woocommerce_product_options_pricing', function () { woocommerce_wp_text_input([ 'id' => '_wholesale_price', 'label' => __('Wholesale Price', 'woocommerce'), 'desc_tip' => true, 'description' => __('Set a special price for Wholesale customers', 'woocommerce'), 'type' => 'number', 'custom_attributes' => ['step' => '0.01', 'min' => '0'] ]); }); add_action('woocommerce_admin_process_product_object', function ($product) { if (isset($_POST['_wholesale_price'])) { $product->update_meta_data('_wholesale_price', sanitize_text_field($_POST['_wholesale_price'])); } }); add_action('wp_footer', function () { if (is_user_logged_in()) { $user = wp_get_current_user(); echo ''; } });