all over the place.
bbPress doesn’t collect individual topic views nor it displays them. Did you mean “topic voices”?
The code looks like tangled spaghetti
The code is very clean.
Well, the gap is deliberate – you can see that in the original Mystique theme too. To remove that, you can put this at the end of the theme’s style.css:
.shadow-right{ padding-bottom: 0 !important; }
And the icons aren’t actually hidden – when you hover the icons, they should come out – but that’s only possible when you’ve the latest version of jQuery running (that is in bbPress dev aka trunk version, not in 1.0.2 or below). So what you can do is, download the latest jQuery and replace it with the one present on your server (bb-includes/js/jquery/jquery.js).
Well, the gap is deliberate – you can see that in the original Mystique theme too. To remove that, you can put this at the end of the theme’s style.css:
.shadow-right{ padding-bottom: 0 !important; }
And the icons aren’t actually hidden – when you hover the icons, they should come out – but that’s only possible when you’ve the latest version of jQuery running (that is in bbPress dev aka trunk version, not in 1.0.2 or below). So what you can do is, download the latest jQuery and replace it with the one present on your server (bb-includes/js/jquery/jquery.js).
Hey decas,
I followed this tutorial here..
http://www.adityanaik.com/integratepress-part-i/
And was able to style my theme within wordpress like this..
http://www.designsaga.com/forum
You will need to coding knowledge to get it working though.
Hey decas,
I followed this tutorial here..
http://www.adityanaik.com/integratepress-part-i/
And was able to style my theme within wordpress like this..
http://www.designsaga.com/forum
You will need to coding knowledge to get it working though.
is there an idea of when this will be publicly launched ie it will be safe to use on a site?
I am very eager to use this!
seems to of fixed it for now i downloaded the bbpress integration plugin and it seems to of given it a big kick
seems to of fixed it for now i downloaded the bbpress integration plugin and it seems to of given it a big kick
Hello guys, I think this question was answered in this forum but sorry I can’t find it. So my problem:
I want to make bbpress use wp theme. Just open wp site, press forum and you are still in website (I want to make it look like a page). How to do that? I used themepress but theres no images and css when I install it…
Sorry for my english.
Another thing is about avatars.
If I recall correctly, the current version of bbpress only has native support for “gravatars”.
Many people, such as me, don’t want “an image that follows you from site to site appearing beside your name when you do things like comment or post on a blog.”
I much prefer allowing members of my site to have an avatar that is specific to their profile on my site.
Hopefully future versions of bbpress have native support for both gravatars and also avatars that are not gravatars.
JJJ, thanks for all your work on the new bbpress!
I run a wordpress site that uses a premium classifieds theme, and I have a bbpress forum integrated on the site.
One little issue is that members of my site have both a forum profile and another profile associated with the classifieds section.
It would be best if members of my site had only a single profile, that could be linked to from both the forum and from the classifieds section.
And the profile could show both recent forum posts of that member, as well as recent classified ads.
I’m not sure if this issue is best to bring up here with bbpress of maybe with the developers of the classifieds theme, or if it’s something I should try to handle myself.
Is there a plugin or an easy mod to show the replies to topics in a thread on the topic page, similar to the phorum.org demo here:
– http://www.phorum.org/demo/list.php?2, and
– http://makeupalley.com/board/board.asp?bid=1
Thanks in advance.
None of these seem to work for me in the latest version of bbPress. Any ideas on how to get this working?
I was looking for this also, thanks Gautam!
I was looking for this also, thanks Gautam!
Thanks mr_pelle!
Regarding bb_get_avatar(), it looks like you still need to have the users email to use it. Is there an easy way to grab the email of the current poster?
I find solution to avatar here, https://bbpress.org/forums/topic/how-to-get-the-last-posts-avatar
echo bb_get_avatar( get_post_author_id(), '70');
It seems I need to echo it out.
Thanks mr_pelle!
Regarding bb_get_avatar(), it looks like you still need to have the users email to use it. Is there an easy way to grab the email of the current poster?
I find solution to avatar here, https://bbpress.org/forums/topic/how-to-get-the-last-posts-avatar
echo bb_get_avatar( get_post_author_id(), '70');
It seems I need to echo it out.
Thank you! Works perfectly!
Thank you! Works perfectly!
The bbPress development (a.k.a. trunk) version allows you to choose what that link should link to (profile or website). But as you’re using 1.0.2, you can change <?php post_author_link(); ?> to:
<a href="<?php echo esc_attr( get_user_profile_link( get_post_author_id( $post_id ) ) ); ?>"><?php post_author( get_post_id() ); ?></a>
That should probably work…
The bbPress development (a.k.a. trunk) version allows you to choose what that link should link to (profile or website). But as you’re using 1.0.2, you can change <?php post_author_link(); ?> to:
<a href="<?php echo esc_attr( get_user_profile_link( get_post_author_id( $post_id ) ) ); ?>"><?php post_author( get_post_id() ); ?></a>
That should probably work…
At the moment, this code <?php post_author_link(); ?> links to the url that users type in, I have some linked to BP profile, some linked to their personal websites.
Is there a way to replace this code to link to their bbpress profile?
p.s. this is the link beneath user avatar.
I was going to wait until JJJ said go – as I assumed there would be a fair few updates in the next couple of days.