Home Forums Free Themes Education Hub how to hide page title from being shown on page

Viewing 15 posts - 1 through 15 (of 25 total)
  • Author
    Posts
  • #31653
    blackgel@gmail.com
    Participant

    how to hide page title from being shown on page when i click an option under the header menu, for example when i cleck home, contact us, faq, member etc, it show the title of the page also on the page, how to hide that, my website http://www.effortsias.com

    #31654
    blackgel@gmail.com
    Participant

    One more question which plugin are you using for this support, I too want the same plugin, or if is anything else please let me know hoe to use the same support system on my site

    #31655
    sharjil.art
    Participant

    Hi,
    how did you change footer text in your website?

    regards,
    Sharjil

    #31658
    wensolutions
    Keymaster

    Hello @blackgelgmail-com,

    To remove the title in the particular page goto Admin Panel > Appearance > Customize > Additional CSS and paste below CSS.

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

    Hope this help.

    If you have any problem further, please let us know.

    Best Regards!!

    #31659
    wensolutions
    Keymaster

    Hello @sharjil-art,

    Please post your issue by creating separate thread so that it would be easier for us to track down your issue and help you further.

    Hope you understand.

    Now to change the text in the footer section goto Admin Panel > Appearance > Customize > Theme Options > Footer Options .

    Hope this helps.

    Best Regards!!

    #31704
    blackgel@gmail.com
    Participant

    the help that you provided remove the title from every page but I want ti on some pages and not on some other pages, how to that selectively for each page to which there is a menu in primary menu, for example, i want it to be there on about us page but not login page, my website http://www.effortsias.com

    one more question which plugin are you using for this support forum (with ticket facility), I too want the same plugin, or if it is anything else please let me know how to use the same support system on my site

    #31773
    wensolutions
    Keymaster

    Well, to hide page title for selective pages only, you need to know the page ID . Based on the page id you need write custom CSS as below.

    .page-id-19 h1.entry-title {   /* here page title hides in Contact Us page */
        display: none;
    }

    You can replicate this code by just differing the page id for which you want to hide the page title.

    Note: By hovering the mouse over the Page Title, the Page ID is revealed as part of the URL displayed in the browser status bar (in Firefox the status bar is displayed at the bottom of the screen). A Page’s ID number is the unique number WordPress’ database uses to identify individual Pages.

    #53034
    markhascole
    Participant

    Buddy, I just visited your website, it’s cool. Buddy removing a title is pretty long process so buddy if WordPress hosts your site you can visit this source: https://goo.gl/PN5rXj for an easy guide.

    #53065
    markhascole
    Participant

    Black gel Upper given link is redirected to this link: https://goo.gl/9PdmN6

    #58999
    LuAlexi
    Participant

    The title of the page in the subject is not deleted by your recommendation. I need to do one page for lending. There should not be a menu, either.
    How can I cope with this problem?

    #59009
    wensolutions
    Keymaster

    Hello @lualexi,

    Can you post your site URL so that we could provide the precise fix ?

    Hope you understand .

    Best Regards!!

    #59028
    LuAlexi
    Participant

    http://rmi-montessori.ru/

    Here is the Css
    .page-id-8 h1.entry-title { /* here page title hides in Contact Us page */
    display: none;
    }

    8-ID page

    #59030
    wensolutions
    Keymaster

    Hello @lualexi,

    When we inspect your site URL, we could not find any page in your menu section whose ID is 8 . So please include the page in the menu that you want to remove the title of and let us know .

    Thank you .

    Best Regards!!

    #59032
    LuAlexi
    Participant

    Sorry, I accidentally deleted the page and did not have time to write to you, so you work so quickly! New page “Landing” ID 45

    .page-id-45 h1.entry-title { /* here page title hides in Contact Us page */
    display: none;

    #59042
    wensolutions
    Keymaster

    Hello @lualexi,

    When we inspected your site URL we found that there is no title in the page that you wanted to remove from .

    Now to remove the menu only from that page use below given CSS.

    For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

    .page-id-45 div#main-nav {
        display: none;
    }

    Hope this helps .

    Best Regards!!

Viewing 15 posts - 1 through 15 (of 25 total)
  • You must be logged in to reply to this topic.