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

时间:2018-11-08 21:24:21

标签: php wordpress woocommerce product

我正在尝试找出如何更改/删除我的Wordpress woocommerce网站上“产品(变式)”下的文本,如以下屏幕截图所示:

See this picture for reference.

感谢您的帮助。

2 个答案:

答案 0 :(得分:1)

根据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' );

或者,您可以在网站上添加一行额外的CSS(经过测试和工作):

.clr .page-subheading {display: none}

答案 1 :(得分:0)

请按照以下步骤编辑/删除子标题。

  1. 转到页面>选择商店页面>编辑。

  2. 在Ocean WP设置下,选择“标题”。

  3. 输入所需的副标题或一个空格,以防您一概删除。

注意:单个空格将完全删除该行,到目前为止不会创建空行。

我不确定是否会随着主题/插件更新而改变,但是如果您尚未创建子主题,这是一个不错的选择。如果您创建了子主题,请在此处查看:https://docs.oceanwp.org/article/500-remove-the-shop-page-subheading