如何在woocommerce中将“每人”添加到类别价格中

时间:2015-11-12 14:51:22

标签: wordpress woocommerce product price

使用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;
}'

1 个答案:

答案 0 :(得分:0)

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