Forum Replies Created
-
In reply to: Exclude specific forums in Recent Topics widget
You could copy out the widget code and rename it to create your own widget and then include it in your functions.php
In reply to: How do I know know if bbPress will meet my needs?When I say see, I mean – tell us and we can give you some guidance 🙂 sorry I should of said.
In reply to: Global variables not accessible from theme filesGood luck! 🙂
In reply to: How do I know know if bbPress will meet my needs?It might be easier to list out everything that you need a forum software to do and then see if bbPress meets your list.
The thing for me personally is that if bbPress doesn’t currently do something then with the power of WordPress behind it, you can make it work with a little development. Other forum software is not quite as easy in my opinion.
Good luck!
In reply to: Can't see bbPress settingsSorry my bad, I meant to say go to tools > forums > recalculate.
If 3) helps though, then just track down that pesky plugin! :p
In reply to: How to center the titles of the forums (in height)You can set the line-height on an element to achieve nice centered titles.
In reply to: Global variables not accessible from theme filesCould you create a class then initalize it inside the bbPress code and use a getter to grab the values you need?
In reply to: Forum SizeHi!
You can achieve this with a relatively small amount of css:
.bbpress #sidebar { display:none; } .bbpress #left-div { width: 100%; }
You will need to create a new image for your background though as it is currently not long enough, then you can add a little more CSS for that too.
Good luck!
In reply to: bbPress 2.5 – Settings section is gone?I would try disabling plugins one by one to see if there is a plugin conflict, I notice quite a few plugins enabled in your admin.
Good luck!
In reply to: Sidebars in BBpress profileIt doesn’t look like they are hidden inside the CSS, it looks like the get_sidebar functions are not in the user profile template file.
In reply to: bbPress 2.5 – Settings section is gone?Try going to tools > forums and then recalculate the permissions, see if that works for you.
I was going to take a look but I can’t get logged in.
In reply to: Can't remove "Topic Status:" and "type"My Hebrew is not very good, which bits are the Topic Status and type?
Hey, if I get any issues like this then I started to disable plugins one by one and then test posting to see if there is a plugin conflict, good place to start.
In reply to: Replies not showing up in forumWebsite temporarily unavailable, i’ll check again soon.
In reply to: Two breadcrumbs are showing upIf you want to hide the other breadcrumb then you can use something like: .bbpress #breadcrumbs
Otherwise you need to fix the breadcrumb at the top to pick up the correct place.
In reply to: List user post totalYou could check what number is returned or if it’s not empty, what does it return for guest users?
In reply to: Global variables not accessible from theme filesCould you not use update_option and get_option? You could serialise an array and then add it to options?
In reply to: Replies not showing up in forumDo you have a site link?
In reply to: Can't see bbPress settingsIf I ever get any issues like this then here is what I do in this order:
1. Go to settings > forums and then recalculate permissions
2. Go to the permalinks page
3. Start disabling plugins one by one to see if there is a plugin conflict
4. Disable my theme and activate a default theme (this is for front end issues).In reply to: Two breadcrumbs are showing upYou could hide the bbPress breadcrumb with some CSS.
.bbp-breadcrumb { display:none; }
Do you happen to have a link? I can’t remember if I changed it or if this is just the older bbPress theme files I am using, but my template uses the bbPress name not You or Your or Your’s.
In reply to: support for sms message when there is a forum updateThe best way to start is to get a website up and running with bbPress, then copy the bbPress template files from the plugin into your WordPress theme – once you get to that stage then take a backup of your full WordPress theme files.
Then get stuck in and start changing some of the bbPress template files, if anything goes wrong just upload the backup and your reset (make sure you take a backup at set intervals so you don’t lose things you want to keep).
Good luck!
In reply to: List user post totalIt needs to go inside loop-single-reply.php – just underneath bbp_reply_author_link line 36 in my theme.
In reply to: List user post totalGive this a try:
$post_count = ( bbp_get_user_reply_count_raw ( bbp_get_reply_author_id ( bbp_get_reply_id() ) ) ) + ( bbp_get_user_topic_count_raw ( bbp_get_reply_author_id ( bbp_get_reply_id() ) ) ); echo "Total Posts: " . $post_count;