首页 > 解决方案 > Woocommerce 在产品页面上隐藏前缀

问题描述

我使用片段在价格之前添加前缀。它工作得很好,但我希望它只显示在类别产品页面上。

我想在简单的产品页面上隐藏前缀。

你能帮助我吗?

谢谢!

使用的片段:

add_filter( ‘woocommerce_get_price_html’, ‘njengah_text_before_price’ );

function njengah_text_before_price($price){

global $post;

$product_id = $post->ID;

$product_array = array( 25338 );//add in the product IDs to add text after price

if ( in_array( $product_id, $product_array )) {

$text_to_add_before_price = ‘ Cena od ‘; //change text in bracket to your preferred text

return $text_to_add_before_price . $price ;

}else{

return $price;
}

}

标签: woocommercehideproductcategories

解决方案


推荐阅读