Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1296894

    Bernarr
    Participant

    Is there some way to add the descriptions set for each forum to display on the forums page itself? For example, I have short descriptions like “Want to join us? Thinking about it? This is where you start!” for the Recruitment section here-
    http://www.chucklingcasket.com/forums/

    But it does not show, is it possible to have the descriptions show?

    #1296977

    Rue Nel
    Moderator

    Hello There,

    Thanks for writing in!

    To resolve this issue, please check this out:
    https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/#16-adding-description-to-forum-pages

    Hope this helps. Please let us know how it goes.

    #1298497

    Bernarr
    Participant

    I’ve tried that, but it still isn’t showing the description under the forum title on the main forum page-
    http://www.chucklingcasket.com/forums/

    #1298509

    Jade
    Moderator

    Hi there,

    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:

    – Link to your site
    – WordPress Admin username / password
    – FTP credentials

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

    #1298910

    Bernarr
    Participant
    This reply has been marked as private.
    #1299101

    Lely
    Moderator

    Hello There,

    Please do give us admin rights so we can check and also FTP credentials too.. I don’t see that you have a child theme? Where did you add the code? Please note that it is not advisable to add it on X theme functions.php file because it will be overwritten on updates. It should be added on child theme’s functions.php file

    #1299508

    Bernarr
    Participant
    This reply has been marked as private.
    #1299589

    Joao
    Moderator

    Hi Bernard

    Download a Child Theme From :

    Dashboard

    Access your site via FTP or Cpanel via File Manager access and extract your child theme on wp-content/themes/x-child

    On your wordpress admin dashboard > Activate Child Theme

    You can than copy files from the original theme on correspondent folder on your child theme and make the changes you want to that file

    Hope that helps

    Joao

    #1309148

    Bernarr
    Participant

    Sorry about the delay.. holidays and all! I got the child theme set up, could still use some help with the forum descriptions showing on the forum list page

    #1309586

    Paul R
    Moderator

    Hi,

    Please add this in your child theme’s functions.php file.

    
    function rw_singleforum_description() {
      echo '<div class="bbp-forum-content">';
      echo bbp_forum_content();
      echo '</div>';
    }
    add_action( 'bbp_template_before_single_forum' , 'rw_singleforum_description');
    

    You may add it after this line

    // Additional Functions
    // =============================================================================

    After that, add this in Custom > Edit Global CSS in the customizer

    
    #bbpress-forums div.bbp-forum-content {
      clear: both !important;
      margin-left: 0 !important;
      padding: 0  !important;
    }
    

    Hope that helps.

    #1310079

    Bernarr
    Participant

    Hello,

    I’ve made those adjustments, but the descriptions still do not show in the forum list here-
    https://www.chucklingcasket.com/forums/

    #1310525

    Rue Nel
    Moderator

    Hi There,

    I have login to your site and want to check if there are any forum descriptions. Regretfully I couldn’t find where to edit the forums and even the forum post replies. Could you please check and make sure that all your forums has descriptions. The code may have work and the forums just needs some descriptions to be added.

    Please let us know how it goes.

    #1310526

    Bernarr
    Participant
    This reply has been marked as private.
    #1310735

    Rue Nel
    Moderator

    Hi There,

    Thanks for updating in! It seems that we have a very limited access to your site. This is why we are not seeing the Forums section in the WP Dashboard.

    Could you please provide as access to your site?

    Thank you in advance.

    #1310989

    Bernarr
    Participant

    Sorry about that, forgot to set admin on forums too, you should be able to see it now