• 如何移除woocommerce的tabs【wordpress技巧】


      我们在用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还没出现这个问题,建议大家修改前先做好备份!!!

  • 相关阅读:
    jQuery动画速成
    elementui更改导航栏样式
    Python反射
    Linux基础--基本命令
    Linux基础--简介
    DRF
    Socket与Websocket初识
    五星宏辉游戏项目小结
    Redis详解(8)--redis-cluster
    Redis详解(7)--主从复制
  • 原文地址:https://www.cnblogs.com/ytkah/p/11080941.html
Copyright © 2020-2023  润新知