Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #296477

    squircle
    Participant

    Morning!

    I am setting up a community site for a mental health community interest company.

    They have asked for BBpress and Buddypress integration.

    I would like to be able to change the menu icons from level 1 to Community at level 1 with 2 column megamenu with headings of Groups and Forum with icons and menu items below. Is this possible?

    Thanks

    Frank (mediabunny.co.uk)

    #296945

    Thai
    Moderator

    Hi There,

    Thanks for writing in.

    Upon checking your website, I can see that it’s under construction.

    Would you mind providing us with login credentials so we can take a closer look? To do this, you can make a post with the following info:

    – WordPress Admin username / Password

    Don’t forget to select Set as a private reply. This ensures your information is only visible to our staff.

    Many thanks.

    #302146

    squircle
    Participant
    This reply has been marked as private.
    #302411

    Nico
    Moderator

    Hi There,

    Would you mind sharing us some screenshot with labels of the things you want to achieve and URL where it is located so that it would be easily located and there will be no confusions.

    Thank you so much. Once we got the information, we’ll do our best help you.

    #302773

    squircle
    Participant
    This reply has been marked as private.
    #302837

    squircle
    Participant
    This reply has been marked as private.
    #303105

    Christopher
    Moderator

    Hi there,

    #1 Please follow this link : https://codex.buddypress.org/getting-started/buddypress-links-in-wordpress-menus/

    #2 The only way is using CSS.

    #3 Please add the following CSS under Customize -> Custom -> CSS :

    div#bbp_login_widget-2 legend {
      border: 1px solid white;
      padding: 0.65em 0.65em 0.75em;
      color: white;
      font-size: 85%;
      letter-spacing: 0.15em;
      text-align: center;
      text-transform: uppercase;
      background-color: transparent;
    }
    
    div#bbp_login_widget-2 legend:before {
      content: "\\f0f2";
      font-family: fontawesome;
      padding: 5px;
    }
    
    button#user-submit {
      color: #ffffff;
      border-color: #fdb000;
      background-color: #fdb000;
      margin-bottom: 0.25em;
      text-shadow: 0 0.075em 0.075em rgba(0,0,0,0.5);
      box-shadow: 0 0.25em 0 0 #bd8400,0 4px 9px rgba(0,0,0,0.75);
    }
    button#user-submit:hover {
      color: #ffffff;
      border-color: #bd8400;
      background-color: #bd8400;
      margin-bottom: 0.25em;
      text-shadow: 0 0.075em 0.075em rgba(0,0,0,0.5);
      box-shadow: 0 0.25em 0 0 #fdb400,0 4px 9px rgba(0,0,0,0.75);
    }
    div#bbp_login_widget-2 label {
      color: white;
    }

    Hope it helps.

    #303606

    squircle
    Participant
    This reply has been marked as private.
    #303956

    Zeshan
    Member

    Hi there,

    #1: Those items are available specifically to BBPress submenu and coded inside the theme. The code responsible for those items can be found under /wp-content/themes/x/framework/functions/global/plugins/bbpress.php, probably line # 518 & 519. It could be possible to insert those in other menu items with custom development, but this would be outside the scope of support we can offer. You may wish to consult a developer to assist you with this. X is quite extensible with child themes, so there are plenty of possibilities.

    Thanks for understanding. Take care!