• Resolved CarlaW

    (@carlaa)


    Hello. I’ve tried to HIDE the SITE TITLE and TAG** from ALL pages (site identity) via appearance>customizer and also on-page per oceanwp page settings. Even when marked “hidden” it still shows up on every page. I am working in a child theme of oceanwp and have never had this issue before with other themes. **I worked around the tag by minimizing the header which is not ideal. I simply want to hide the site title and site tag on pages site wide. Thank you.

    • This topic was modified 6 years, 11 months ago by CarlaW.
Viewing 8 replies - 16 through 23 (of 23 total)
  • Crystal

    (@crystaljuneblog)

    It worked! Thank you so much Amit! I really appreciate your help!!!

    -Crystal

    Amit Singh

    (@apprimit)

    You’re welcome!

    Hello – I added the code above to the css in customizer and the site title is still showing on my site page headers. I have no site logo yet but I want to hide the title. How can I do this please?

    @sazzle124 Can you link to your site so that I can check it?

    Try to use the below code and see it works or not –

    #site-logo #site-logo-inner {
        display: none !important;
    }

    Hi! I’m trying to get rid of a line of text on my site identity tagline. I did not write, “This is where you can add new products to your store” and I can’t for the life of me find where to go to delete it. I want my tagline (which is added and visible), but I don’t want the “this is where…” bit. Any advice? I’ve tried all the code additions listed in this thread already and they are only working on my site title, which I want to keep. Thank you!

    Hello,

    Go to Dashboard > Pages > click to edit the shop page > OceanWP settings metabox > Title tab and add a subheading to change the text or add a space to remove it. Or add the below code to the functions.php file of the child theme to disable it –

    function my_remove_shop_page_header_subheading( $subheading ) {
        if ( is_shop() ) {
            $subheading = false;
        }
        return $subheading; 
    }
    add_filter( 'ocean_post_subheading', 'my_remove_shop_page_header_subheading' );
Viewing 8 replies - 16 through 23 (of 23 total)
  • The topic ‘Cannot Hide Site Title & Tag’ is closed to new replies.