-
AuthorPosts
-
July 5, 2014 at 1:39 pm #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
July 5, 2014 at 6:09 pm #287529Hey kirkmc!
Can you post the link to your website? Enfold is fully compatible with bbPress and applies its styling to the plugin
Cheers!
YigitJuly 5, 2014 at 6:25 pm #287535July 6, 2014 at 5:50 am #287642Hey!
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!
JosueJanuary 7, 2016 at 7:27 pm #561461Hi Enfold team,
Is it possible to add link so someone who clicks on banner can wisit another page?
Thanks in advance.
January 7, 2016 at 9:53 pm #561528Hi!
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!
BasilisJanuary 7, 2016 at 10:30 pm #561566Hi!
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,
JosueJanuary 8, 2016 at 8:59 am #561853Thanks 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.
January 8, 2016 at 11:02 am #561881Hey!
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!
JosueJanuary 8, 2016 at 3:49 pm #562039Hi 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):
January 8, 2016 at 11:43 pm #562234I’m unable to identify which element is the banner and where do you want it.
Regards,
Josue -
AuthorPosts
- You must be logged in to reply to this topic.