> 백엔드 개발 > PHP 튜토리얼 > WooCommerce 3에서 가변 가격 범위를 선택한 변형 가격으로 바꾸는 방법은 무엇입니까?

WooCommerce 3에서 가변 가격 범위를 선택한 변형 가격으로 바꾸는 방법은 무엇입니까?

DDD
풀어 주다: 2024-11-15 00:56:02
원래의
700명이 탐색했습니다.

How to Replace the Variable Price Range with the Chosen Variation Price in WooCommerce 3?

WooCommerce 3에서 변동 가격 범위를 선택한 변동 가격으로 바꾸기

문제:

WooCommerce의 가변 제품에서 표준 레이아웃은 제품 제목 아래에 가격대를 표시합니다. 이는 선택한 변형이 포함된 제품의 정확한 가격을 알고 싶어하는 고객에게 혼란스럽고 오해의 소지가 있을 수 있습니다.

해결책:

이 코드는 가격 범위를 제거하고 가장 낮은 제품 가격만 표시하여 문제를 해결합니다. 또한 선택한 변형에 따라 표시된 가격을 업데이트합니다.

코드:


<br>add_action( 'woocommerce_before_single_product', 'move_variations_single_price', 1 );<br>함수 move_variations_single_price(){</p>
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">global $product, $post;

if ( $product->is_type( 'variable' ) ) {
    // removing the variations price for variable products
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );

    // Change location and inserting back the variations price
    add_action( 'woocommerce_single_product_summary', 'replace_variation_single_price', 10 );
}
로그인 후 복사

}

함수 replacement_variation_single_price(){

global $product;

// Prices and calculations
$prices = array( $product->get_variation_price( 'min', true ), $product->get_variation_price( 'max', true ) );
$price = $prices[0] !== $prices[1] ? sprintf( __( 'From: %1$s', 'woocommerce' ), wc_price( $prices[0] ) ) : wc_price( $prices[0] );

$prices = array( $product->get_variation_regular_price( 'min', true ), $product->get_variation_regular_price( 'max', true ) );
sort( $prices );
$saleprice = $prices[0] !== $prices[1] ? sprintf( __( 'From: %1$s', 'woocommerce' ), wc_price( $prices[0] ) ) : wc_price( $prices[0] );

if ( $price !== $saleprice &amp;&amp; $product->is_on_sale() ) {
    $price = '<del>' . $saleprice . $product->get_price_suffix() . '</del> <ins>' . $price . $product->get_price_suffix() . '</ins>';
}

?>
<style>
    div.woocommerce-variation-price,
    div.woocommerce-variation-availability,
    div.hidden-variable-price {
        height: 0px !important;
        overflow:hidden;
        position:relative;
        line-height: 0px !important;
        font-size: 0% !important;
    }
</style>
<script>
jQuery(document).ready(function($) {
    $('select').blur( function(){
        if( '' != $('input.variation_id').val() ){
            if($('p.availability'))
                $('p.availability').remove();
            $('p.price').html($('div.woocommerce-variation-price > span.price').html()).append('<p>
로그인 후 복사

}

추가 참고 사항:

  • 이 코드는 WooCommerce 버전 3.2.x 이상과 호환됩니다.
  • 다음을 권장합니다. 더 나은 가독성을 위해 선택적으로 CSS를 활성 테마의 스타일시트로 이동하세요.
  • 코드는 WooCommerce의 후크를 수정하는 특정 플러그인이나 테마와의 호환성을 처리하지 않습니다.

위 내용은 WooCommerce 3에서 가변 가격 범위를 선택한 변형 가격으로 바꾸는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿