Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #287507

    I’ve installed the bbPress forum plugin, but I don’t like the display. I actually like the way your forum displays here, but I don’t see how to change any of the display options in the plugin or the settings. I know that you can use themes with bbPress, but does the Enfold theme not apply to bbPress, or is the theme you use in this forum different?

    Thanks,

    Kirk

    #287529

    Hey kirkmc!

    Can you post the link to your website? Enfold is fully compatible with bbPress and applies its styling to the plugin

    Cheers!
    Yigit

    #287535
    #287642

    Hey!

    Try adding this code to the Quick CSS:

    .bbp-search-form:before {
        content: url(https://kriesi.at/wp-content/themes/kriesi/images/enfold.jpg);
        display: block;
        margin-bottom: 15px;
    }

    Change the URL of the Enfold banner by the of yours.

    Cheers! 
    Josue

    #561461

    Hi Enfold team,

    Is it possible to add link so someone who clicks on banner can wisit another page?

    Thanks in advance.

    #561528

    Hi!

    With CSS only nop, it is not.
    You would need to do some modifications to bbPress files, to add the banner as image and then add the link attributes.

    Thanks a lot for your time

    Cheers!
    Basilis

    #561566

    Hi!

    Try with this code in theme / child theme functions.php:

    add_action( 'bbp_template_before_forums_index', 'bbp_template_before_forums_index_func');
    function bbp_template_before_forums_index_func() {
    ?>
    <a href='#'><img src='img_url'></a>
    <?php
     }

    Regards,
    Josue

    #561853

    Thanks Josue,

    It is working perfect. You’re the best!!!

    Is it possible to put banner before the search field?
    I have one more question – what if I want banner on topics pages and pages where people are writing replies – as example – on those locations:

    Thanks one more time.

    #561881

    Hey!

    i’m not sure what you’re posting there, if you could provide screenshots that would be better. I guess you want the banner in the single topic view too, if so then change the code to:

    add_action( 'bbp_template_before_forums_index', 'bbp_template_before_forums_index_func');
    add_action( 'bbp_template_before_single_topic', 'bbp_template_before_forums_index_func');
    function bbp_template_before_forums_index_func() {
    ?>
    <a href='#'><img src='img_url'></a>
    <?php
     }

    Cheers!
    Josue

    #562039

    Hi Josue,

    The last code you provided me is working.

    One more position that is left – where i also want banner is here (before the list of topics):

    Banner before the topics list

    #562234

    I’m unable to identify which element is the banner and where do you want it.

    Regards,
    Josue

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