[WORDPRESS] WooCommerce : 일부 범주 가격을 체중으로 변경
WORDPRESSWooCommerce : 일부 범주 가격을 체중으로 변경
해결법
-
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; } }
from https://stackoverflow.com/questions/62010933/woocommerce-change-some-categories-price-to-be-by-weight by cc-by-sa and MIT license
'WORDPRESS' 카테고리의 다른 글
[WORDPRESS] CakePHP에서 WordPress 리디렉션 문제를 해결하는 방법은 무엇입니까? (0) | 2020.11.22 |
---|---|
[WORDPRESS] WooCommerce 사이트에 로그인하고 등록하십시오 (0) | 2020.11.22 |
[WORDPRESS] WooCommerce 전자 메일의 사용자 정의 필드로 서식이 지정된 청구 전체 이름을 사용자 정의 (0) | 2020.11.22 |
[WORDPRESS] WordPress : 탐색 메뉴에 빈 목록 항목 추가 (0) | 2020.11.22 |
[WORDPRESS] WooCommerce의 특정 제품에 대한 지리적 위치에 근거한 사용자 정의 리디렉션 (0) | 2020.11.22 |