Archived topic
Support Template
8 replies · Started by Sumit on July 13, 2018
Hi I really liked the customizations that you guys have done to bbpress plugin. You guys should sell it, I would def like to buy it. Maybe create a support plugin for a wordpress website?
Hi there,
Here is the CSS stylesheet we use for bbPress:
https://generatepress.com/wp-content/themes/generatepress_official/css/gp-bbpress.css?ver=1531454458
Hope this helps!
this is the only thing you changed? Are other features and options already exist in bbpress?
Basically I am trying to see how I can add a support section to my website, that works exactly like yours do.
That's all of the CSS we used.
We also have quite a few private functions we use, but the actual style of the forum is all inside that CSS.
Hi,
in my (and also the others) opinion your stylesheet for the bbpress rocks! It just speeds up the development process of my forum :)
I would ask you for one detail. Can I use your stylesheet as a replacement of an original bbpress CSS file? Or need I to include both files: original bbpress and your stylesheet?
Due to performance improvements would like to prevent the loading of unnecessary files.
Regards,
Dominic
You will need both :)
Thank you very much for help! :)
Just some information for future amateurs, who will try hard customizing bbpress. If you want to simply eliminate some items from bbpress template for sure (not by using display: none;), there is solution which needs child theme.
- Check folder:
/wp-content/plugins/bbpress/templatesand try to find template with annoying elememt (for example one withclass="bbp-header"inloop-replies.php) - Open .php file and gently erase whole html tag
- Upload modified template into
/wp-content/themes/generatepress_child/bbpress - Be happy with replies list without header using hard code instead of CSS :)
Regards,
Dominic
Awesome.
Thanks for sharing!