I’ve got a strange layout issue on my bbpress forums where if you try to edit a “reply” in a topic the page content is cut off by a div; this doesnt effect editing the very first post of any topic however; which is strange because all the code, CSS classes etc look the same. I thought maybe a bbpress reply page used a different template.. but I’m not sure.
Please see image.
Link to image with further details
Certainly hope someone can help as this is driving me nuts and I’ve spent ages getting the rest of bbpress to fit my theme only to discover this bug now 🙁
Please help!
I made a look on it. I was able to activate plugin. I see Mark as Read/Unread link next to the Subscribe/Unsubscribe links on topics.
But I can not recognize unread topics, they look exactly the same like regular topics. What I did is:
-activated plugin
-used existing topic, where users X and Y are chatting
-logged in with user X and posted reply
-logged in with user Y on topics page, but dont see any difference, that one where user X replied minutes ago looks exactly same like others.
-tried to create new topic with user X and then login with user Y
Maybe I dont fully understand planed functionality? Or it depends from theme and something should be added to CSS file?
Previous plugin for old 1.x BBpress forum was working so that it marked unread topics (totaly new topics and old ones where new replies were submitted after users last visit) in different color.
I’ve got a problem with line spacing.
On the forum, there is no spaces between paragraphs, but on the blog posts there is. Is this a CSS issue? If so, what do I edit?
Hi there – and sorry upfront for yet another question with regards to bbPress-Themes…
- I have been doing thorough research in the forums, no answers for me…
- Versions: WordPress running 3.4.2, bbPress is 2.1.2
My situation_
I have setup bbPress to work with my custom theme (OptimizePress) and embedded the [bbp-forum-index]-shortcode into a single page (“forum”). Here I could obviously pick a site-template and therefore the forum is nicely embedded into my site-layout.
Since I cannot continue using shortcodes & (slug-)pages for dynamically generated topics, I went ahead and followed the customization instructions. I can ensure that the right (template-)files are called upon (inside my /theme-directory) because I played around with content-single-forum.php f.ex. and also checked for the correct CSS-reference.
I also followed the instructions concerning the functions.php (in /theme):
add_theme_support( 'bbpress' );
remove_action( 'bbp_enqueue_scripts', 'bbp_theme_compat_enqueue_css' );
Now I need to wrap the forum-specific template-files with the page-template used by my custom theme. I already tried integrating the bbPress-code into the exisiting page-template with no positive result (no server-response or strange loop-behaviour).
Either I went down the right road but am weak in skill at modifying PHP-Code or there is a far easier approach I haven’t seen/figured out yet (which again doesn’t compliment me on my skill-level…).
Anyways, maybe someone can help me out / hint me into the right direction.
Thanks so much in advance,
Regards
Henning
My suggestion? Find a suiting CSS file in the theme, add
.bbp-forum-title { font-weight: bold; }
at the bottom, and call it a day.
Hy. I DO NOT want to use child theme! i hate it.
I need to do a little modify to the topic title. Example show it on “bold” style instead of “not bold” style. Yeah i know… when update version i need to repet the css modify or lost it so is better to use child theme… NO THANKS.
SO… on suorce code of my bbpress (plugin) page i found “<a class="bbp-forum-title" ……"
GOOD bbp-forum-title is "my man" … the question is WHERE (DEVIL) I FOUN IT?????? IN which
(cursed) CSS file???
Thank you.
PS. BuddyPress 1.6.1 + WordPress 3.4.1 + bbpress (plugin) 2.1.2
Sorry, work swallowed my soul (again < .<)
Alright, the problem is that the id of the primary container (the main content) is "container" on bbpress, and "primary" on your page.
Take a backup of all the files, change to in the forum pages. In the forum CSS, replace #container with #primary
That ought to do it, and good luck.
I had the same issue… see: https://bbpress.org/forums/topic/how-to-override-bbpress-css/
I walked through the bbPress code, and discovered where it looked for its css. Amazed it wasn’t documented!
Hello all. Some of you have graciously offered to take a look at the website. I’ve posted links to the HTML and CSS but have not received any responses yet.
Please help if you can.
Hi, if anyone can diagnose the problem by looking at the stylesheets (CSS) and HTML, we’d be most grateful.
Melindrea, No I don’t know my way around HTML/CSS.
It`s near impossible to troubleshoot this without having access to the site so we can see the HTML/CSS. Looks to be either a CSS clear or, as Melindrea said, an extra container.
If you want more help than that we really must see the site itself.
The likeliest from what I can see in those screenshots is that there is an extra container somewhere that messes up the stylesheet. Unfortunately, it’s kind of hard to see off of screenshots exactly where the tags go wrong — do you know your way around CSS/HTML to figure it out from there?
Nice suggestion Amunds! I have to ftp the files and edit the bbpress/compat css file.
its all good now. http://www.sarenosolutions.com/forums please check 🙂 leave a good tip for us then. thanks guys!
Hi all,
thanks for making such an easy forum solution, I’ve been quite pleased with how much functionality comes right out of the box.
Though I am getting confused when it comes to best practices for making some typical theme customizations so that I can keep a custom look with future updates of bbpress.
At this time, I am really only trying to change font styles and sizes and some of the coloring and minor layout items with how the forum renders to match my custom wordpress theme (built off of HTML5 boilerplate).
I’ve reviewed:
http://bbpress.org/forums/topic/bbpress-2-0-theme-compatibility/ &
http://codex.bbpress.org/theme-compatibility/
but, I don’t feel like it helped and am not sure if things have already changed since those have been written. either that or i am just lost in the number of files that seem to control the theme in bbpress with the added bbp-theme-compat files.
For instance, i am told to copy over everything from bbpress/bbp-theme-compat/bbpress directory, yet none of those files include the bbp-theme-compat/css files. which is what I will probably doing the most modification of (right?)
Then it says to copy over the bbpress/extras directory (optionally), but all I can find is the bbpress/bbp-theme-compat/extras directory, is this what was meant?
Again, really just want to make minor style changes that universally affect the bbpress fonts and colors, yet still want to specifically target those bbpress items.
Might increase the complexity of the customization, but right now just want to start small and use bbpress best practices so that I don’t lose my customization when upgrading anything.
thanks
Have you taken over control of bbpress templates using theme compatibility? If so you can modify yourtheme/bbpress/loop-forums.php and remove the list item:
li class=”bbp-forum-freshness”
Next from yourtheme/bbpress/loop-single-forum.php remove the same section and its contents:
li class=”bbp-forum-freshness
Finally you’ll have to adjust the CSS of your forums to compensate the width of the remaining forum columns for the missing freshness. Hope this helps.
EDIT: sorry, I tried to post the exact code blocks to remove, but the forum here isn’t letting me embed the code 🙁
Adam,
This is definitely be possible. There’s a fair bit of work involved, but I re-wrote most of the bbpress templates from the ground up for my new site using the bbpress functions included in the plugin as well as a few custom ones I wrote myself.
Just install bbpress, set it to theme compatibility settings, then take over the css and template files in your theme directory.
CSS goes in yourtheme/css
Base bbpress page types go in yourtheme directory (archive-forum, archive-topic, single-forum, single-topic, single-topic-edit, single-reply-edit, and single-user are the most important ones)
All the sub-templates (content, loops, forms, and pagination) goes in yourtheme/bbpress
Using this as a general guide you can rebuild bbpress from the ground up to suit your needs. Check out my bbpress enabled theme at http://tamrielfoundry.com
think of it this way: WordPress comes with two themes when you install it. 2010 and 2011. you can go out and get new ones or modify this one. what if you want your own. You write it from the ground up.
This is what I wan’t to do with bbpress – a “theme” so to speak. So that when you install bppress you can “use as default” or “click to enable this look” (which in my case would be on by default) how would I achieve this? pure css?
what if I wanted to create a new “display forums” template or a new “login” template? is there documentation on “themeing bbpress?” and making that theme the default? Hope that makes better sense….
-
This reply was modified 14 years, 1 month ago by
Adam.
Same happens for /forums/users/admin/ where the main content is repeated in the sidebar and the footer widget areas. I can’t seem to isolate the issue. This theme uses WooSidebar Manager to create custom sidebars which I have done for the Forums custom post type.
I’ve also update the CSS so you can see both affected areas.
I see you have functions and what not and already specified ways of calling the forum data from the database into specified ways of displaying the topic and the replies or the forum and its topics. The question is, is there enough api in the core bbpress for me to say, instead of laying out the forums this way I am going to re-write them from the ground up and display them my way.
or would you recommend just using css to make my changes?
-
This topic was modified 14 years, 1 month ago by
Adam.
-
This topic was modified 14 years, 1 month ago by
John James Jacoby.
Having the same issue in a footer widget as well as the sidebar. BBPress is overriding the footer 1 and primary widgets on the /forum/. I’ve made the page forum full width via a custom CSS file to make it disappear in the sidebar as a short term solution, but can’t seem to find the issue in the code.
See, http://www.divorcingmatters.com/forums/
Sure thing.
The boxes are CSS and our own design but you can use the Vote It Up plugin for votes, although it hasn’t been updated in ages.
You’ll need to customise and theme it. BTW, we are using BBPress 2.0.2 and not the latest but it should work.
Good Luck…