I am having no luck importing from phpbb (latest version 3.0.12) The importer just seems to hang for hours and hours on “Starting Conversion”
At what point do I give up and start again. Should it take over four hours?
I am using the latest version of bbpress and on 3.5.2 of WP and not sure if this is a bug or not.
When viewing a user’s profile, the user’s username does not display next to the About tag heading when you are viewing the Profile itself and also when viewing topics, replies, subscriptions, favourites when the contents of those pages are empty.
It will only display “About KatieKat” on the forum/users page heading if there is something in topics, replies etc. Nothing shows at all when you get the front Profile page apart from the word About.
Is this a bug and if not is it possible to display the username even if there is nothing on that page in the About heading and especially on the front Profile page.
Kind Regards
KatieKat
Again, you can extend bbPress with custom views.
One of the sites in that link list has 4 views:
Most popular topics
Topics with no replies
Topics with most replies
Latest topics
That doesn’t mean they are part of bbPress, check your themes functions.php file for something like this:
function wphc_register_custom_views() {
bbp_register_view( 'popular-topics', __( 'Popular Topics' ), array( 'meta_key' => '_bbp_reply_count', 'orderby' => 'meta_value_num' ), false );
bbp_register_view( 'unpopular-topics', __( 'Unpopular Topics' ), array( 'meta_key' => '_bbp_reply_count', 'orderby' => 'meta_value_num', 'order' => 'asc' ), false );
bbp_register_view( 'random-topic', __( 'Random Topic' ), array( 'orderby' => 'rand' ), false );
bbp_register_view( 'closed', __( 'Recently Closed' ), array( 'post_status' => 'closed' ), false );
}
add_action( 'bbp_register_views', 'wphc_register_custom_views' );
Look at this: Google link
Hi have exactly this… where i found this? Links are stored in (bbPress) Topic Views List widget!!
I did some pretty exhaustive testing of this a couple of days ago and was not able to reproduce this behaviour. Can you give us some more details with some direct links to your site highlighting the issue.
Hi, i have two title pages with no translation:
forums/view/most-replies/ it show title page –> Topics with most replies
forums/view/latest-topics/ it show title page –> Latest topics
I nedd to translate but this two elements do not exist in original file bbpress.pot
Can you see if bbpress.pot contain this two elements or is true wich do not exist?
Thanks…
I have tried to install bbPress, but am having issues with the Forum Index page.
This is the forum index: Forums. However, the actual forums work fine, as you can see on a test forum I created called Suggestions.
Any ideas as to why it’s doing this? I’ve followed the few instructions I could find, including the page about Theme Compatibility. I added the bbPress theme files to my own theme, as suggested in those intructions.
Also, is there a way for the link to just be ‘http://thewhitesharks.co.uk/forums/suggestions/’ instead of ‘http://thewhitesharks.co.uk/forums/forum/suggestions/’? Seems a bit long to me…
sorry forgot to include info regarding the website I am working on
http://derrallbellaire.info
username: test001
password: test001
Also I have only tested the vBulletin importer with importing from vBulletin v4.2 so there might be a few changes in the database structure between 4.1x & 4.2x but as I can’t get my hands on vBulletin 4.15 I cannot confirm this.
If you are comfortable in phpMyAdmin and you could export half a dozen rows from each of the ‘forum’, ‘thread’, ‘post’, ‘tagcontent’, ‘tag’ & ‘user’ tables I could have a closer look at why this isn’t working for you.
We just started to use bbpress forum and noticed that some of the entries are out of order (time and date). I just put in a test entry and it shows up before two other entries up to 10 days before this one.
Can anyone tell me what the problem is?
Thanks.
Pat
Ok, thank you!
I achieved what I wanted, this way:
Forums list:
<p class="bbpx-topic-meta">
<?php
$forum_id = bbp_get_forum_id();
$last_active = get_post_meta( $forum_id, '_bbp_last_active_time', true );
if ( empty( $last_active ) ) {
$reply_id = bbp_get_forum_last_reply_id( $forum_id );
if (!empty( $reply_id)){$last_active = get_post_field( 'post_date', $reply_id );}
else
{
$topic_id = bbp_get_forum_last_topic_id( $forum_id );
if (!empty( $topic_id)){$last_active = bbp_get_topic_last_active_time( $topic_id );};
};
};
$date= date('d/m/Y',bbp_convert_date( $last_active ));
$active_id = bbp_get_forum_last_active_id( $forum_id );
$link_url = $title = '';
//these two next lines are beyond me: same condition, two results for the same variable...
if (empty($active_id)){$active_id = bbp_get_forum_last_reply_id( $forum_id );};
if (empty($active_id)){$active_id = bbp_get_forum_last_topic_id( $forum_id );};
if (bbp_is_topic($active_id))
{
$link_url = bbp_get_forum_last_topic_permalink( $forum_id );
$title = bbp_get_forum_last_topic_title( $forum_id );
}
elseif (bbp_is_reply($active_id))
{
$link_url = bbp_get_forum_last_reply_url( $forum_id );
$title = bbp_get_forum_last_reply_title( $forum_id );
};
$time_since = bbp_get_forum_last_active_time( $forum_id );
if (!empty($time_since) && !empty($link_url)
{
$anchor = '<a href="'.esc_url($link_url).'" title="'.esc_attr($title).'">'.$date.'</a>';
?>
<span class="bbp-topic-freshness-author">
<?php
bbp_author_link(array('post_id'=>bbp_get_forum_last_active_id(),'size'=> 14));
?>
</span>
<?php
}
else {$anchor = 'esc_html__( 'No Topics', 'bbpress' );};
?>
</p>
<?php
echo apply_filters( 'bbp_get_post_time', $anchor, $forum_id, $time_since, $link_url, $title, $active_id );
?>
Topics list:
<p class="bbp-topic-meta">
<span class="bbp-topic-freshness-author"><?php bbp_author_link(array('post_id =>bbp_get_topic_last_active_id(),'size'=>14)); ?></span>
<?php
$topic_id = bbp_get_topic_id();
$reply_id = bbp_get_topic_last_reply_id();
$title = bbp_get_topic_last_reply_title( $topic_id );
$link_url = bbp_get_topic_last_reply_url( $topic_id );
$date = get_post_time( 'd/m/Y', $gmt, $reply_id, true );
$anchor = '<a href="'.esc_url($link_url).'" title="'.esc_attr($title).'">'.esc_html($date).'</a>';
echo apply_filters( 'bbp_get_topic_freshness_link', $anchor, $reply_id, $result, $link_url, $title );
?>
</p>
As you can see, I didn’t hook anything already. So far I just got rid of the “bbp_topic_freshness_link()” in the templates and simply replaced the initial function by these lines, just to make a test. I still have to make a function out of these.
Not happy with this mess as I’m sure it’s more complicated that it should be, but it works.
Thank you for your guidance koendb!
I am looking for a cross site login. Allow me to manage all users & roles from all sub-domain sites from one central place. Is this plugin supposed to do what I am looking for? If yes, this is a big time saver!
Please let me know when this is up and running. I would love to be the first to test on it.
Thanks,
Darren
On my website I have custom roles (to make sure users are shown in a map etc.), and this is why user profiles are giving me a 404. The admin and a testuser (who is not that specific role) just work.
All the users with this other role do have a participant role as forum role, and the capabilities of the other role also include the roles of a participant (also tried without, actually tried everything).
I want to get these profiles working, or remove the link to the profiles (so just show usernames in topics etc.), which I also couldn’t found.
Thanks in advance for a reply.
Please guys, this is not something trivial.
I tried to work it out but I couldn’t as there is not a single post around here answering that and there is nowhere I can find a comprehensive list and description of the BBPress functions.
All BBpress functions I happened to find that are related to the dates are displaying them in a sophisticated way, there is none I could find that just displays the date in its simplest form.
I tried to “date()” and “strtotime()” every single variable I could find but with no success.
There are posts telling how to use flat dates around here but these posts are very old (4 years..) and they make use of functions that don’t exist anymore.
There was supposed to be a plugin for that but this plugin doesn’t exist anymore neither.
And the more recent questions about this issue are just not answered.
I hope this will not be taken the wrong way: I’m very grateful for this plugin and for all the people working on it. Really. I just don’t know how to move on with an unanswered question and some outdated answers.
PS: I asked you how to get the latest post date in the forum list view but now, I also (and mainly) need to know how to achieve this in the topic list view and posts view as they are not documented neither.
Long story short: how to get real dates everywhere!
It’s been two days and I’m still in the dark. If it’s there somewhere, my bad, but please be assured that, as obvious as it might be, I tried my best.
Thank you very much for your help.
Greetings,
I’ve migrated my bbpress install to from 1.x to 2.x (latest) and I didn’t noticed that there was a “change” in the permalinks structure.
Now google webmaster tools is complaining that I have a lot of 404 errors.
With bbpress 1.x the the “dots” where removed from permalinks, after the migration the “dots” where converted from “.” to “-”
Topic name: “Example 2.6.1”
old permalink: /topic/example-261
new permalink: /topic/example-2-6-1
The problem is that now, even if I fix the permalinks to behave like they where in 1.x, I will have 404 errors for the new items already indexed. So, is there any way to “redirect” the “old” permalinks to the new ones?
At this moment google webmaster tools is reporting 2.133 404 errors
Thank you!
What theme are you using? and can we see how it looks – give us your website address
SEO issues bbPress with buddypress
This means that there are duplication issues on title tags and metadescriptions within the groups and subcategories.
groups/automotive/forum
/automotive/forum/topic/test/
both have the same title even using yoasta
Is there any way so that the title of the post is pulled through to the title tag and the description is pulled through to the metadescription?
I only know a little php, and I think this way the function searches through ALL the links in a reply/topic and adds target_blank to all of them when at least one of them is external. That’s not what you want.
You need to
1) explode the content
2) loop through all link tags
3) Test if it’s external or internal
4) if external: use the function above to add the target=_blank
5) if internal: remove nofollow
6) implode and return the new reply/topic content.
It would probably take me a few hours to google this together, maybe you could try this yourself or somebody whit a little more php knowledge could help.
Hi
Ive setup the forum and have the register link in the widget setup properly. My test profile was able to register and receive an activation email. But when/if I log out and try to sign back in using the BBPress Login Widget, after I click “login” it takes me to the wordpress login?
Is this how the login is supposed to work? Is there a way to login using the widget that doesnt prompt them to login with wordpress? Why after clicking on “login” does it take the user to another login screen and just log them in on that same page?
I dont feel secure if users can maybe access the backend to the site, but it looks like this is how this site works as well?
Ive installed a BBPress plugin called BBPress – No Admin does this solve my fear of them being able to access the backend?
Any help would be greatly appreciated.
Im running WordPress 3.6.1 with BBPress 2.4.1 and BuddyPress 1.8.1
Need help with that error message in forum-topics
`Home › Forums › Test
Warning: sprintf() [function.sprintf]: Too few arguments in /xxx/xxx/xxx/wp-content/plugins/bbpress/includes/forums/template.php on line 187
anyone knows what is wrong?
That plugin looks fine to use with bbPress 2.x, you just need to download either the bbpress-close-old-posts.php
file and upload it to your plugins folder, or download the .zip, extract to a folder and upload that folder to your plugins folder.
But since it’s not listed at bbpress.org plugins list, I’m not sure if it’s safe or even compatible with my current install.
You will at times find many themes and plugins that are not hosted on WordPress.org, sometimes they are proprietary code, other times they are just quick snippets of code, it doesn’t mean they are unsafe and usually a quick note to the author will confirm if they work with the latest version of bbPress.
btw, searching for “lock” at bbpress.org plugins, at the bottom of the page you will see: ”Viewing 1 to 4 (4 total)” but there are only 3 plugins listed.”
Thanks, this is a known issue and will hopefully be fixed soon.
Hello , I have got the latest bbpress plugin workings with my WordPress but now I am noticing forums and topics are not refreshing . I use w3 total cache and assume that is the issue . Is there a way to exclude bbpress from it or do you know how to make it compatible , thank you
Hi all.
I am using bbpress fist time.
I have configured the login widget with links to my “lost password” & “registr” page i have created with shortcodes: [bbp-register] , [bbp-lost-pass].
I have also created an page with shortcode: [bbp-login] which then i have changed the redirect link from wp-login to my own page link of the shortcode for login. The change i have done in bbpress/includes/common/template.php around line 1154.
Now my issue is that after i run a test register (from my page created with the shortcode) nothing happens. I get redirected to my custom login page. But i get no email or my test user does not show up in “Users” in my WP backend.
I have following plugins installed:
Advanced Custom Fields
bbPress – Report Content
bbPress Notices
bbPress Notify (No-Spam)
bbpress Simple Advert Units
bbPress Users Stats
Better WP Security
Crumina Menu Customizer
Facebook
Google Fonts WordPress
Math Captcha
Page Builder by SiteOrigin
WPBakery Visual Composer
WP Maintenance Mode
Hope someone can help me on this issue. 🙂
Looking at the source of http://atdp.berkeley.edu/forums/topic/test-topic-2/ the ‘content’ looks like its getting nuked either directly by your theme or by the plugin ‘W3 Total Cache’
Can you switch to Twenty Eleven/Twelve/Thirteen and see if you get your content back?
If no go there, disable the ‘W3 Total Cache’ plugin and try that as there are some issues running ‘cache’ plugins with bbPress see this for more info on that.
If a user makes a nice forum post I would like to be able to choose to post this single topic into a WP post/blog of categoryX. If I see another nice forum post then I would like to be able to choose to post this single topic to the same, or perhaps a different WP post/blog under categoryY. All video/images etc should be presented in WordPress as it would appear in the forum.
I’d like to see the topic content appearing as an article rather than a forum topic: No reply window shown even if logged in, instead show ‘number-of-replies’. No avatar, just a short comment ‘posted-by-xxx’. The topic title and ‘number-of-replies’ links the user to the respective forum topic in the main forum view.
————-
I was thinking this might be possible using shortcodes. e.g. create a new shortcode based on ‘bbp-single-topic’ (perhaps called ‘bbp-single-topic-post2blog’). Then add a drop-down-list beside each forum topic only visible for admins. The drop-down-list includes all WP posts/blogs. After selecting a WP post from the drop-down-list the shortcode and respective topic-ID gets added to the bottom of the WP post content.
What do you think? I have quite a clear picture on how this should work.
If this is possible I would be happy to test it.