• Unable to remove default content from the page title bar, second row. “This is where you can add new products to your store”.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    Follow one of them to remove or edit the shop page subheading –

    1. Add the below code to the fucntions.php file of the OceanWP child theme to remove 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' );

    2. Edit the shop page > oceanwp settings metabox > title tab and edit the subtitle field or add a space to remove it.

    Thread Starter digitalsplendid

    (@digitalsplendid)

    @apprimit Thanks for the reply. I could not locate ‘oceanwp settings metabox’ in the Shop Page. (Screenshot: https://sdslinks.blogspot.com/2019/06/blog-post.html)

    Scroll down the page to see it. It is below the Editor. Have you installed the Ocean Extra plugin?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Removing default text content from the page title bar’ is closed to new replies.