当没有评论时,我成功删除了评论标签上的(0)。在营销中 - 最好的做法是不要表明产品有0评论。这是我在我的子主题的functions.php文件中放置的代码,该文件位于WooCommerce插件文件wc-template-function.php中:
if ( ! function_exists( 'woocommerce_default_product_tabs' ) ) {
/**
* Add default product tabs to product pages.
*
* @param array $tabs
* @return array
*/
function woocommerce_default_product_tabs( $tabs = array() ) {
global $product, $post;
// Description tab - shows product content
if ( $post->post_content ) {
$tabs['description'] = array(
'title' => __( 'Description', 'woocommerce' ),
'priority' => 10,
'callback' => 'woocommerce_product_description_tab'
);
}
// Additional information tab - shows attributes
if ( $product && ( $product->has_attributes() || ( $product->enable_dimensions_display() && ( $product->has_dimensions() || $product->has_weight() ) ) ) ) {
$tabs['additional_information'] = array(
'title' => __( 'Additional Information', 'woocommerce' ),
'priority' => 20,
'callback' => 'woocommerce_product_additional_information_tab'
);
}
// Reviews tab - shows comments
if ( comments_open() ) {
$check_product_review_count = $product->get_review_count();
if ( $check_product_review_count == 0 ) {
$tabs['reviews'] = array(
'title' => sprintf( __( 'Reviews', 'woocommerce' ) ),
'priority' => 30,
'callback' => 'comments_template'
);
}
else {
$tabs['reviews'] = array(
'title' => sprintf( __( 'Reviews (%d)', 'woocommerce', $product->get_review_count() ), $product->get_review_count() ),
'priority' => 30,
'callback' => 'comments_template'
);
}
}
return $tabs;
}
}
我的问题是 - 这是否是在不更改woocommerce的核心文件的情况下修改此内容的最有效方式?函数“woocommerce_default_product_tabs”是一个可插入的函数,但似乎我可以以某种方式使用过滤器而不是将整个函数复制到我的子主题并从那里编辑它。我只需要了解这行代码:
title' => sprintf( __( 'Reviews (%d)', 'woocommerce', $product->get_review_count() ),
并添加一个if语句来检查是否没有注释来更改上面的行,如上面一行:
title' => sprintf( __( 'Reviews', 'woocommerce' ),
答案 0 :(得分:3)
这很简单。您可以更改任何标签的标题:
add_filter( 'woocommerce_product_tabs', 'wp_woo_rename_reviews_tab', 98);
function wp_woo_rename_reviews_tab($tabs) {
global $product;
$check_product_review_count = $product->get_review_count();
if ( $check_product_review_count == 0 ) {
$tabs['reviews']['title'] = 'Reviews';
} else {
$tabs['reviews']['title'] = 'Reviews('.$check_product_review_count.')';
}
return $tabs;
}