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

    You can hide it with CSS.

    1. Login as admin and go on theme customizer Dashboard >> Apperance >> Customize or Click on Custimze link on top bar from front-end.

    2. Then navigate Advanced Settings and put below css into Custom CSS textarea then click Save & Publish button.


    body.woocommerce-page h1.page-title { display: none; }
    .page-header {
    height:80px;
    }

    Hope this helps you.

    Thread Starter dekla

    (@dekla)

    Hello Saurabh

    Thank you for your answer but this code remove all pages title on my site.
    I want remove the title only on the main shop page
    http://www.deklasrl.com/shop/

    Hello dekla,

    Try below css.

    body.post-type-archive-product h1.page-title { display: none; }

    Hope this will works for you.

    If that doesn’t work, this will remove the title from the linked page:

    .page-template-page-contact h1.entry-title {
        display: none;
    }

    Be sure you’re placing custom CSS into Theme Options> advanced Settings.

    Let me know if this works for you!

    -Kevin

    Thread Starter dekla

    (@dekla)

    Hi all

    Ths for the answer
    the code works well

    I want to ask another question
    how can I remove the link at the bottom of the page
    http://www.advmobile.info/farmaciajorio/

    It looks like you’re not using the Virtue Theme on that site, and I’m not sure where that link is coming from. It’s likely there due to the configuration of a plugin that you’re using for the landing page.

    Try this CSS though:

    .c3539f6e153bd1a {
        display: none;
    }

    -Kevin

    Thread Starter dekla

    (@dekla)

    Hi Kevin

    Thank you for your answer
    I updated the theme, but the code don’t work

    This is the code that i write in the page
    http://www.advmobile.info/wp-content/uploads/2016/12/Jorio.jpg

    • This reply was modified 9 years, 5 months ago by dekla.

    Try this CSS:

    .wpc-page >:nth-child(2) {
        display: none;
    }

    I’ve never really written a piece of CSS using that type of selector, so let me know how it works for you.

    -Kevin

    Thread Starter dekla

    (@dekla)

    Hi Kevin

    Thank you for your answer
    but the code don’t work 🙁

    I can’t seem to figure this out. Have you tried contacting the plugin support to see if they have a solution? Since this isn’t really part of the Virtue Theme I’m not really sure what the best method would be.

    -Kevin

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘Remove only shop title’ is closed to new replies.