And*_*sen 3 php wordpress product woocommerce
我试图弄清楚如何更改/删除我的 Wordpress woocommerce 网站上“产品 (Varer)”下的文本,如以下屏幕截图所示:
任何帮助表示赞赏。
根据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)
| 归档时间: |
|
| 查看次数: |
3182 次 |
| 最近记录: |