Forum Replies Created
-
In reply to: bbPress Test Data
Nice, that looks awesome!
Would of saved me some time :p a WXR file would of been pretty handy indeed for some bbPress themes i’m attempting to create.
In reply to: Where is registered the forum sidebar?Does the body tag have a class of .bbPress ?
If so you can use that to target the sidebar.
Hey guys,
The theme is what teamoverpowered.com forums is based on and it is still working (I always update bbPress).
So in theory the theme should work, take a backup and test it! 🙂
I am (slowly) working on another theme which should be quite nice, it’s just taking longer than expected.
In reply to: Users cannot see first post in each topicDo you have a site link we can take a look at?
In reply to: twitter feed works in bbpress but NOT wp, why?If I test on a blank install of WordPress the twitter feed works, if I add bbPress it also works. Do you have an example of any other non bbPress site where the twitter feed is not working?
I am guessing a plugin conflict, javascript error or template problem.
Good luck!
In reply to: Remove nested repliesAll you need to do is find the bit of css which is causing the margin/positioning on the left hand side of the nested comments and remove it. I can’t go into any further detail without knowing the markup, sorry!
Good luck!
Seems to be working for me, was it cached by any chance?
In reply to: Static For DisclaimerYou can add this into the footer of your website and then give it a class along the lines of .forum-disclaimer
Then inside your stylesheet do something like:
.forum-disclaimer { display:none; } .bbpress .forum-disclaimer { display:block; }
Good luck!
In reply to: Static For DisclaimerWhat do you mean by fix?
In reply to: "/forums" page not displaying anythingThis works: http://www.theportlandcompany.com/forums/
Add this to your stylesheet.
.bbpress #primary .sidebar { display:none; } .bbpress #content-page { width: 98%; }
Good luck!
In reply to: Remove nested repliesDo you have an example we can see? It’s most likely achievable by removing a bit of CSS.
In reply to: Lost Password doesnt workGo to WordPress.
Add a new page called something like “Lost Password”.
In the text of the page put [bbp-lost-pass].In reply to: BuddyPress Topics don't show upHave you tried temporarily switching themes to see if the topics show up?
In reply to: Fatal error(s) with bbPress 2.5.2What are the fatal errors?
In reply to: Checking if member is onlineThe wpdb prepare uses a placeholder like %s and then replaces it with the first variable in the arguments after the query itself.
For example:
$user_login = $wpdb->get_var( $wpdb->prepare( "SELECT u.user_login FROM $wpdb->users u JOIN $wpdb->usermeta um ON um.user_id = u.ID WHERE u.ID = %s AND um.meta_key = 'last_activity' AND DATE_ADD( um.meta_value, INTERVAL %s MINUTE ) >= UTC_TIMESTAMP() ", $user_id, $time ) );
Good luck!
In reply to: How to center the titles of the forums (in height)`.bbpress-forums .bbp-forum-info .bbp-forum-title { line-height:48px; }
Do you have an example?
In reply to: Remove default cssAn easy way would be to follow this: https://codex.bbpress.org/theme-compatibility/
Then empty the bbPress CSS file, you can then use a caching plugin to mash css files together and limit requests so the extra file being requested wouldn’t hurt too much.
In reply to: How to center the titles of the forums (in height)500 internal server error 🙁 when I visit your site.
In reply to: bbPress Sidebar not showing on siteWhat happens if you disable the bbPress WP Tweaks, does the login/register widget appear again?
In reply to: bbPress Sidebar not showing on siteThere is a sidebar on your site, when you say “the bbPress” sidebar, do you mean a widget or am I missing something?
In reply to: Forum SizeYour background image doesn’t stretch full width, so you would have to look at either making it longer, or removing it and just have a solid colour.
The code can either go inside your style.css or if you want to do it properly you can follow the instructions here: https://codex.bbpress.org/theme-compatibility/ and then edit the files inside /css/ in your theme files.
In reply to: Change font color or background on bbpressI would highly recommend looking into learning a little CSS, even a small amount can let you achieve a lot in bbPress and even WordPress.
Something you can do for example is:
#bbpress-forums { background-color: #ffffff; color: #000000; }
– this is just an example.Good luck! 🙂
In reply to: How to center the titles of the forums (in height)I would recommend learning a bit of css, even a little CSS lets you do amazing things with bbPress and even WordPress!
Some like:
bbp-title { line-height: 20px; }
This is just an example. I don’t know the exact html of your website.Good luck!