Hi, I’m trying to figure out how to display bbPress’ tag cloud from the sidebar in WordPress. I’ve googled a lot, but can’t seem to find anyone who’s done this.
I’ve hacked a temporary solution that displays the topic tags from bbpress as a list in the wordpress sidebar, but I’d really love to have the size formatting as well.
<?php
global $wpdb;
$taglist = $wpdb->get_results(“select name from bb_terms”,”ARRAY_N”);
$number_of_tags_to_show = 10;
for ($count = 0; $count < $number_of_tags_to_show; $count++)
{
if($taglist[$count][0])
{
$tag = str_replace( ” “, ” “, $taglist[$count][0]);
echo ‘
<a href=”http://www.mysite.org/forum/tags.php?tag=’;
echo $tag;
echo ‘”>’.$tag.’
‘;
}
}
?>
Any suggestions for how to access bb_tag_heat_map from inside WordPress?
NM — he has since updated the plugin to fix the issue.
Using the latest update fixed it.
Mark as resolved
There is no config option. What did you try and what happened when you did it? How was that different from what you expected? Is it possible the code is just not styled any differently in your theme?
You did read this right?
https://bbpress.org/forums/topic/html-tags-for-explanation-purposes#post-60673
I dont know which code i have to add and where in mini-track.php
Try removing the float:left; from the div that wraps around all those image links. That messes up some other stuff on the page, but it makes the links clickable. You might need to do something else to format that area.
1. Just move the blocks of code in your template’s front-page.php to put the forums up top and the latest discussions on bottom.
2. There is a space for first name and last name in the profile, it’s just not required and not part of the sign-up. Why not direct them after signing up or logging in to change their password, and to complete their profile. Just provide them with a link to their profile page.
If you’re looking to make that information required, or part of the sign-up process, I’m not sure how to do that.
If you’re using 1.0.2, here is a password to log in with, and the hash you should insert into the bb_user.user_pass field (bb_user table, user_pass field) for your user:
insert this hash: $P$BlNSCHus7UmWzMPMh1c/MH71Mjj7kj/
log in with this password: n4gN#cO39wpL
Now change your password after you’re logged in.
You are so far over my head it’s terrible…Where do I find the line “bb_user.user_pass field (bb_user table, user_pass field)” & what and where in that line do I insert… do I login with this password “n4gN#cO39wpL” on the main login or Admin login or both…& what is the user name…I really appreciate your help but I am very illiterate with code of any sort…The version is not visable at the top or anywhere for that matter that I can see…I just started this forum about 3 weeks ago so it should be the new one…the URL is http://mysoberlifetoday.com maybe you can tell what version it is…thank you Chris
You can just edit the record directly to insert the hashed password, or you can use this SQL to update it:
UPDATE bb_users SET user_pass = “$P$BlNSCHus7UmWzMPMh1c/MH71Mjj7kj/” WHERE ID=YOURNUMERICUSERID
If your ID is 1, this would be the SQL:
UPDATE bb_users SET user_pass = “$P$BlNSCHus7UmWzMPMh1c/MH71Mjj7kj/” WHERE ID=1
That also assumes your table prefix is bb_. Change it if you used something different.
If you’re using 1.0.2, here is a password to log in with, and the hash you should insert into the bb_user.user_pass field (bb_user table, user_pass field) for your user:
insert this hash: $P$BlNSCHus7UmWzMPMh1c/MH71Mjj7kj/
log in with this password: n4gN#cO39wpL
Now change your password after you’re logged in.
The version will be in the admin section, on the bottom of every page.
http://chrishajer.com/bbpress/bbpress-version.png
Of course, without being able to log in, you aren’t going to be able to see that. If you haven’t removed it, the version is also showed in the head section of each forum page. It might look like this:
<meta name="generator" content="bbPress 1.0.2" />
I want to give you a password that will work with your version, so I need to know what version you are using.
So, on this live site, why not just use wp_list_pages('exclude=WHATVER_ID') – unless you’re not planning on using this wp_list_pages functionality on the live site in the future.
I know that doesn’t resolve the issue of plugins apparently not working in your integration, but I am more concerned with the results at this point than figuring out where the problem lies with integration in general.
Can you just exclude pages in the wp_list_pages on your forum?
This is the whole code I used btw:
<?php if ( bb_is_user_logged_in() ) : ?>
<?php else: ?>
<a href="http://domain/register.php" >Register free</a>
<?php endif; // bb_is_user_not_logged_in() ?>
@nickaster thanks
I implemented it today, it works like a charm
not on this ‘live’ site… (my initial BBPress theme).. I actually duplicated the header code (using wp_list_pages etc…)
On my local server I use get_header() and I’m still having the issue.
I would stop using the Mass Delete Users plugin. I suspect it’s doing something that’s incompatible with 1.0 and something is going on with the users it deletes and the ones that are left behind. I would stop using that then do a recount in the admin. I’m not sure if recounting fixing user-related things that might have gotten borked.
I don’t think Allow Images, either BBcode plugin, BBvideo or Social It would cause any problem like this. Unless the problem occurs on threads with (or without) images or threads with (or without) video.) The Social IT appears to be on every post.
I’m not sure about Human Test for 1.0 – I don’t think I’ve ever tried it. I do have it working with a 1.0RC, I forget which version though. All you can do is try it. If it activates without error, that’s good. If you try to register and it prevents incorrect answers and allows correct answers, and the registration goes through, then it works.
I don’t think disabling Mass Delete is going to make everything better right away. I have a feeling that it’s doing something to the user data in the database, and that will remain there even after you deactivate the plugin.
The other possibility is something going on with the host. But if all the other software is running fine there, that’s probably not a problem.
chrishajer, I use the following plugins:
Allow Images
BBcode Buttons Toolbar
BBcode Lite
BBvideo
Mass Delete Users
Social It
These are vital for me though, I got many users depending on these as core functions already. This problem did interestingly enough, occur after I had installed Mass Delete Users. Not imediatly though.
Deleting users works, but maybe it does something else that I can not see – that fucks up something else?
Do human test work for 1.02?
That’s a single quote or apostrophe, not a back tick. On a US English keyboard, the single quote is on the same key with a double quote. The back tick is in the upper left corner or the keyboard, usually on the same key as the tilde (tilde requires shift.)
http://upload.wikimedia.org/wikipedia/en/5/51/KB_United_States-NoAltGr.svg
You want to use the upper left key in this keyboard layout around your code.
<?php e_('This is code'); ?> and ‘this is just inside single quotes’.
OK, I see.
How are you getting your WordPress header to display in the forum? Did you just integrate deeply and the include the header <?php get_header(); ?>?
I have a developer who does some work for me sometimes fixing up my blog, and this week he made a nice theme for me to match my wordpress theme 
http://angerwise.com/forums
Found out the two ways to make it sticky
I’m sure they will offer a similar system as in WP in a future version
For the life of me I can’t see why although I’m sure it’ll become obvious. None of the navigation links in my header to elsewhere on the site work (even though the logo image does). The code looks fine to my eyes, why could this be?
See http://www.bangbangs.co.uk/msgboard/