Yes, I installed ThemePress but when I open bbpress it display my theme without css, images
What I missed?
Yes, I installed ThemePress but when I open bbpress it display my theme without css, images
What I missed?
how do you display the forum itself on the site or has it not got that far yet
First of all, you need to enable the TwentyTen child theme from Appearance. Then, you need to create a new page, give it a title and then select bbPress - Forum Index in Template Select Box in Page Attributes section (below Publish button).
And when you’d visit the page, you would see the list of forums, then you can go to a particular forum to see its topics and then go to a particular topic to see its replies.
About notify the posts I’m using https://bbpress.org/plugins/topic/subscribe-to-topic/ in my forum.
Pretty good 
Regards
About notify the posts I’m using https://bbpress.org/plugins/topic/subscribe-to-topic/ in my forum.
Pretty good 
Regards
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.
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).
That’s very nice. I like the twitter integration 
However, there’s a minor bug. There is a gap betwen the breadcrumb/top strip (that has the home link, etc) and the rest of the page.
This gap means this strip also hides the rss/twitter icons.
That’s very nice. I like the twitter integration 
However, there’s a minor bug. There is a gap betwen the breadcrumb/top strip (that has the home link, etc) and the rest of the page.
This gap means this strip also hides the rss/twitter icons.
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
Looking for a simple way of turning off the way that the number of times a topic has been viewed from being appended to the topic title in the lists.
I don’t wish to stop collection of this meta data just to stop it being displayed all over the place.
The code looks like tangled spaghetti – I’m sure given a month or two I could fathom it out, but …
Am I the only one that thinks it is untidy ?
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.
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.