答案 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)
请按照以下步骤编辑/删除子标题。
转到页面>选择商店页面>编辑。
在Ocean WP设置下,选择“标题”。
输入所需的副标题或一个空格,以防您一概删除。
注意:单个空格将完全删除该行,到目前为止不会创建空行。
我不确定是否会随着主题/插件更新而改变,但是如果您尚未创建子主题,这是一个不错的选择。如果您创建了子主题,请在此处查看:https://docs.oceanwp.org/article/500-remove-the-shop-page-subheading