删除 OceanWP 主题中产品页面标题下的子标题文本

And*_*sen 3 php wordpress product woocommerce

我试图弄清楚如何更改/删除我的 Wordpress woocommerce 网站上“产品 (Varer)”下的文本,如以下屏幕截图所示:

请参阅此图片以供参考。

任何帮助表示赞赏。

rpm*_*192 5

根据OceanWP的文档,您可以将此函数添加到functions.php子主题的文件中以删除副标题:

// Remove the Shop page subheading
function my_remove_shop_page_header_subheading( $subheading ) {

    if ( is_shop() ) {
        $subheading = false;
    }

    // Return the subheading
    return $subheading;

}
add_filter( 'ocean_post_subheading', 'my_remove_shop_page_header_subheading' );
Run Code Online (Sandbox Code Playgroud)

或者,您可以向您的网站添加一行额外的 css(已测试并有效):

.clr .page-subheading {display: none}
Run Code Online (Sandbox Code Playgroud)