Skip to:
Content
Pages
Categories
Search
Top
Bottom

Please help with set-up logic


  • dtmfcc
    Participant

    @dtmfcc

    I must be doing something wrong, but can’t seem to understand it. I’m using WP4.3.1, Thesis 2.1.9 Classic Responsive Skin, and just installed bbPress 2.5.8 . The website is http://www.practicesuccesstools.com

    My intention is to have a menu item called Forums, with a dropdown for the 3 actual forums, Support, Blogging, and Marketing.

    However, I seem to also have a Forums Page http://www.practicesuccesstools.com/forums/ which I really don’t want. And the main forum page has a first line of

    “Your blog is your most powerful practice tool › Forums › Forums

    Subscribe”

    although I would like the subscribe line.

    Can you please help me untangle this?

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

  • Robkk
    Moderator

    @robkk

    However, I seem to also have a Forums Page http://www.practicesuccesstools.com/forums/ which I really don’t want.

    This is where the normal forum index should be. It just looks weird because it is inheriting a certain template.

    And the main forum page has a first line of

    “Your blog is your most powerful practice tool › Forums › Forums

    This is because your Front Page that you set in Settings > Reading has that as its title of the page. You may need to just rename that to Home or Front Page. You could possibly add the heading manually in the content, and maybe set a no title template for the page if you have one.


    dtmfcc
    Participant

    @dtmfcc

    I don’t want to rename my Front Page to “Front Page”. What I want to do is not have that title display on Forums page. Can you tell me how to do that?


    Robkk
    Moderator

    @robkk

    You can Add this to your child themes functions.php file or add this PHP code snippet into a plugin that can hold custom php code snippets like functionality.

    function mycustom_breadcrumb_options() {
        $args['include_home']    = false;
        return $args;
    }
    add_filter('bbp_before_get_breadcrumb_parse_args', 'mycustom_breadcrumb_options');

    dtmfcc
    Participant

    @dtmfcc

    Perfect. Thank you so much.


    Robkk
    Moderator

    @robkk

    no problem 🙂

Viewing 5 replies - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.
Skip to toolbar