복붙노트

[WORDPRESS] WooCommerce : 일부 범주 가격을 체중으로 변경

WORDPRESS

WooCommerce : 일부 범주 가격을 체중으로 변경

해결법


  1. 1.이 스 니펫을 시도하십시오.

    이 스 니펫을 시도하십시오.

    add_filter( 'woocommerce_get_price_suffix', 'bbloomer_add_price_suffix', 99, 4 );
    
    function bbloomer_add_price_suffix( $html, $product, $price, $qty ){
        $product_categories = array('beef', 'chicken');
        if( has_term( $product_categories, 'product_cat', $product->get_id() ) ){
            $html = ' per kg';
            return $html;
        }
    }
    
  2. from https://stackoverflow.com/questions/62010933/woocommerce-change-some-categories-price-to-be-by-weight by cc-by-sa and MIT license