BuddyBoss Home – Web Support Forums Themes BuddyBoss theme Removing page title from mobile layout

Viewing 14 posts - 1 through 14 (of 14 total)
  • Question

    #58283
    @george123

    I have

    .entry-title{
    display: none !important;
    }

    in my css.. but it still shows the page title at the top of all pages, when you are using mobile.

    Answers

    #58347
    @george123

    Is there a way for me to remove all of the page titles, EXCEPT for the member groups? I don’t need page titles displayed anywhere.. the code above does that.. but it also removes GROUP titles.. Thank you.

    #58362
    @george123

    Any idea what the page IDs are for the activity page, forum index page, etc?

    #58427
    @vapvarun

    Hi @george123
    You can use https://wordpress.org/plugins/reveal-ids-for-wp-admin-25/ to get id col for each post type
    Regards

    #58512
    @george123

    This doesn’t help.

    I need the page IDs for pages not shown in wp-admin such as the activity page and latest forum topics page and forums index page.

    #58674
    @george123

    bump

    #58800
    @vapvarun

    hi @george123

    For your site

    Activity page is id 5

    If you need to hide page title for it you can use following css

    
    .page-id-5 .entry-header
    {
    display:none;
    }
    

    Regards
    Varun Dubey

    #58937
    @george123

    I also then need to know the page id for the Forums Index.

    Also, when I do this, it doesn’t change it on Mobile.

    Take a look at my homepage. Page title is hidden, but on mobile, it shows?

    #59134
    @vapvarun

    Hi @george123
    I have added following at your site .page .entry-header will remove page title from all pages and .bbpress .entry-header will remove title from all forum specific pages

    
    .page .entry-header , .bbpress .entry-header
    {
    display:none;
    }
    

    Regards

    #59135
    @george123

    @vapvarun Thank you for your help but whatever you did messed up the profile page spacing for each member. Not sure if it’s a code we did or you did? Thanks again.

    #59136
    @george123

    Should be down more, the buttons in white and @admin on the cover photo, no?

    #59137
    @vapvarun

    No other edits are made my side, you can also remove my codes to cross check from customize >> custom css options
    Regards

    #59140
    @george123

    Fixed it with margin-top: 125px;.. thanks.. this can be closed.

    #59307
    @vapvarun

    Okay fine,

    Regards
    Varun Dubey

Viewing 14 posts - 1 through 14 (of 14 total)
  • The question ‘Removing page title from mobile layout’ is closed to new replies.