从woocommerce店面主题主页中删除页面标题

时间:2017-03-11 06:45:38

标签: php wordpress woocommerce

之前已经问过这个问题,我在这里尝试了很多解决方案,但没有一个能为我工作。我已经使用woocommerce店面主页模板将主页设置为静态页面,并且想要删除页面标题标题。我已经尝试将此代码添加到我的functions.php中,但它什么也没做,

if ( is_front_page() ) {
   remove_action( 'storefront_page', 'storefront_page_header' );
}

我尝试过以下答案:

How to hide page title from WooCommerce Storefront theme homepage?

&安培;

WooCommerce StoreFront child theme - How to remove title on homepage

以下代码有效,但仅适用于商店页面。我找不到主页的条件标签。

function wc_hide_page_title()
{
    if( !is_shop() ) // is_shop is the conditional tag
        return true;
}
add_filter( 'woocommerce_show_page_title', 'wc_hide_page_title' );

任何人都可以在不使用插件的情况下帮助我这样做。谢谢!

4 个答案:

答案 0 :(得分:0)

试试这个

function wc_hide_page_title() {
    if( is_front_page() ) 
        return true;
}
add_filter( 'woocommerce_show_page_title', 'wc_hide_page_title' );

答案 1 :(得分:0)

此功能在发布时有效:

function jasom_dotnet_change_homepage_title( $args ) {
    if(is_front_page()) {
        remove_action( 'storefront_page', 'storefront_page_header', 10 );
    }
}
add_action( 'wp', 'jasom_dotnet_change_homepage_title' );

答案 2 :(得分:0)

如果您正在使用店面首页模板,则需要使用storefront_homepage操作。

function wc_hide_page_title() {
    if( is_front_page() ) 
    remove_action( 'storefront_homepage', 'storefront_homepage_header', 10 );
}
add_action( 'woocommerce_show_page_title', 'wc_hide_page_title');

答案 3 :(得分:-1)

尝试使用以下代码隐藏主页或任何特定页面上的页面标题

function wc_hide_page_title()
{
    if( !is_page('home') ) // is_page is the conditional tag. 'home' is the page slug or use ID of the page instead of page slug.
    return true;
}
add_filter( 'woocommerce_show_page_title', 'wc_hide_page_title' );