Динамическое отображение цены продажи для определенных продуктов в Woocommerce - PullRequest
2 голосов
/ 27 апреля 2019

Мне нужно разработать скрипт в файле функций, который отображает цену продажи для определенных категорий для зарегистрированных пользователей.Этот код работает нормально.

Мне нужно добавить дизайн цены продажи к нему

function thenga_customer_specific_pricing( $price, $product ) {    
    if ( ! is_user_logged_in() ) {
        return $price;
    }

    $id = $product->get_id();

    if( has_term( 'daniel-wellington', 'product_cat' ,$id ) ){
        // Give these customers a 20% discount.
        return $price * 0.8;
    } elseif( has_term( 'giardino-segreto', 'product_cat' ,$id ) ){
        return $price * 0.85;
    } else {
        return $price;
    }
}
add_filter( 'woocommerce_product_get_price', 'thenga_customer_specific_pricing', 10, 2 );

Я ожидаю, что результат будет таким:

Было: 100 € Сейчас: 80 €

Я пробовал этот фильтр:

function custom_dynamic_sale_price_html( $price_html, $product ) {
    if( $product->is_type('variable') ) return $price_html;

    $price_html = wc_format_sale_price( wc_get_price_to_display( $product, array( 'price' => $product->get_regular_price() ) ), wc_get_price_to_display(  $product, array( 'price' => $product->get_sale_price() ) ) ) . $product->get_price_suffix();

    return $price_html;
}
add_filter( 'woocommerce_get_price_html', 'custom_dynamic_sale_price_html', 20, 2 );

, но он работает во всех продуктах, как я могу назвать этот фильтр только в определенных категориях?

1 Ответ

2 голосов
/ 27 апреля 2019

Следующий код отобразит ожидаемый результат (для простых продуктов):

// Discount prices
add_filter( 'woocommerce_product_get_price', 'specific_discounted_product_prices', 10, 2 );
function specific_discounted_product_prices( $price, $product ) {
    // For logged in customers
    if ( is_user_logged_in() ) {
        if( has_term( 'daniel-wellington', 'product_cat' ,$product->get_id() ) ){
            $price *= 0.8; // 20% discount
        } elseif( has_term( 'giardino-segreto', 'product_cat' ,$product->get_id() ) ){
            $price *= 0.85; // 15% discount
        }
    }
    return $price;
}

// Display the discount
add_filter( 'woocommerce_get_price_html', 'specific_discounted_product_prices_display', 10, 2 );
function specific_discounted_product_prices_display( $price, $product ) {
    // For simple products and logged in customers
    if( $product->is_type('simple') && is_user_logged_in() ){
        $regular_price = wc_get_price_to_display( $product, array( 'price' => $product->get_regular_price() ) );
        $sale_price    = wc_get_price_to_display( $product, array( 'price' => $product->get_sale_price() ) );
        $active_price  = wc_get_price_to_display( $product );

        if( $regular_price != $active_price ) {
            if( $product->is_on_sale() )
                $price = sprintf( 'Was: %s – Now: %s', wc_price($sale_price), wc_price($active_price) );
            else
                $price = sprintf( 'Was: %s – Now: %s', wc_price($regular_price), wc_price($active_price) );
        }
    }
    return $price;
}

Код помещается в файл function.php вашей активной дочерней темы (или активной темы). Проверено и работает.

...