1

使用 woocommerce,我有几个类别,但想将“每个人”添加到“烹饪课程”类别中。我写了这个函数,它适用于所有产品。我似乎无法让它仅适用于该类别。

'/*---------Adds per person to price -------*/
add_filter( 'woocommerce_get_price_html', 'custom_price_html', 500, 2 );
function custom_price_html( $price, $product ) {
if (( int ) is_category( 'Cookery Classes','product_cat', $product->id ) )
$price .='per person';
$price .= '<span class="from"><BR>' . _x('per person', 'price_per_person','woocommerce') . ' </span>';
return $price;
}'
4

1 回答 1

1

找到并安装了这个插件: https://wordpress.org/plugins/woocommerce-jetpack/ 允许您为每个产品类别的价格添加自定义标签

于 2016-01-21T16:13:38.503 回答