我们在用woocommerce建站时有时不想让产品的review显示出来,以使单个产品页面简单而令人印象深刻,那么要如何移除tab呢?可以在主题的function.php文件定义移除tabs函数,代码如下

add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
function woo_remove_product_tabs( $tabs ) {
    unset( $tabs['description'] );      	// Remove the description tab 移除产品描述
    unset( $tabs['reviews'] ); 			// Remove the reviews tab 移除评论
    unset( $tabs['additional_information'] );  	// Remove the additional information tab 移除更多信息
    return $tabs;
}

  不过需要注意的是,有网友留言说Warning: this removes the tab. But it also removes the content.移除tab标签,也可能移除内容。ytkah还没出现这个问题,建议大家修改前先做好备份!!!

相关文章:

  • 2021-08-24
  • 2022-12-23
  • 2022-12-23
  • 2021-08-03
  • 2021-06-25
  • 2021-09-26
  • 2022-12-23
  • 2021-09-10
猜你喜欢
  • 2021-10-16
  • 2021-05-19
  • 2021-09-18
  • 2021-08-07
  • 2021-10-19
  • 2021-08-08
  • 2021-08-14
相关资源
相似解决方案