View post on imgur.com
Widget name: (bbPress) Topic Views List
how to edit this widget?
Hi there,
Im having problems viewing the user profile on my BBpress forum integrated in my website. When i try to click on the username of someone that has posted (for example – in the topics section) it takes you to a ‘page not found’ – 404 error page.
Does anyone know how i can fix it so that it takes them to the profile page?
I am using my own bespoke custom theme
Thank you
Hey guys, I’ve been looking everywhere for this
I installed bbpress and made a forum ( just testing ).
I want my forum to be full width and without the side bar. Tried the “1 column full width” layout and some custom css.
The best I’ve got is a no-full-width forum WITHOUT side bar in the /forum/ page.
But further than that like /forum/topic/… the side bar reappear.
My site is http://mmo4teens.netai.net/ and my theme is Stargazer Colloquium.
Any help is appreciated.
Thanks in advance.
Ok, maybe the pre v3.0.0 never included ‘topic tags’ so the best solution is to delete or comment out this section in vBulletin3.php
Basically remove the code between lines #293 and #334 in vBulletin3.php bbPress 2.5.4
https://bbpress.trac.wordpress.org/browser/tags/2.5.4/includes/admin/converters/vBulletin3.php#L293
https://bbpress.trac.wordpress.org/browser/tags/2.5.4/includes/admin/converters/vBulletin3.php#L334
I hope to get the updates that I have been doing over the past week and a bit finished by the end of the week and it would be great if I could get a few people to test theme out ๐
Indeed I can confirm this is happening, feel free to create a ticket and if you have a patch add that also https://bbpress.trac.wordpress.org/, if not I’ll try to get some time later in the week to have a look.
When I convert existing forums to categories, the topics inside donโt show but the page does load.
There is something weird here, I haven’t quite found all the issues relating to this but I am sure it is part of what I am looking at in https://bbpress.trac.wordpress.org/ticket/2647
Could you please give me specific details on what you are doing:
e.g.
– Create a new forum via the ‘new forum’ in the backend
– Change the above new forum type to ‘category’ and update
– Visit http://example.com/forums/myforums
– Click this
– Click that
Result:
When I go here, I expect the forum to something something
Expected result:
The forum should do this and that and not do xyz or 123
You’ll need to test with the Twenty Fourteen theme and with all your plugins except bbPress disabled as I wrote in my previous post.
Hi,
I want to create a “member profiles” page that lists all of my bbpress users and links to their individual bbpress profile pages.
Now, if I want to find a particular user, I need to go into the forum and click the author link.
Is this possible?
Further to the above, it looks like wpscan pings some databases and looks for exploits in anything named ‘bbPress’ and in our case, it’s finding those false positives which only relate to the old bbPress 1.x ‘standalone’ version of bbPress.
+1 for another anxiously awaiting the VB3 importer feature. We are running v3.8.3 and are getting hacked almost weekly. As soon as the import feature is ready, we’re ready to make the move to bbPress.
Also in terms of bbPress users can look at other users favorites:
e.g. https://bbpress.org/forums/profile/azinfiro/favorites/
But you cannot see other users subscriptions, only your own:
e.g. https://bbpress.org/forums/profile/azinfiro/subscriptions/
You can see your subscriptions, I cannot, you want to take this into account when showing these counts wherever you are planning on doing this so users only see their own subscription counts.
You want to change line #109 in form-topic.php
https://bbpress.trac.wordpress.org/browser/tags/2.5.4/templates/default/bbpress/form-topic.php#L109
From:
<?php if ( !bbp_is_single_forum() ) : ?>
To:
<?php if ( ! ( bbp_is_single_forum() || bbp_is_topic_edit() ) ) : ?>
Give Akismet a run, it’s all we use here on bbpress.org it catches most of the spam.
http://akismet.com/
@tmanhphuc None of the issues you link to relate to the bbPress v2.x plugin, these are all old vulnerabilities for the bbPress v1.x standalone version of bbPress, these have all been patched in the bbPress v1.2 branch.
Sorry, I found my own answer under this thread: .
This thread can be closed, I won’t mind.
We just finished migrating a client’s site to use bbPress, and hit our first snag. Thread/topic subscription appears to work correctly. But subscribing to a forum does not result in any notification emails.
I’d post a link to the site, but all forums are marked as private because it’s being used as part of an intranet.
Versions:
WordPress 3.6.1
bbPress 2.5.4
I can list the other plugins if someone suspects a conflict, but it’s a fairly long list.
ok lets start by seeing if this is a plugin or theme issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, switch to a default theme such as twentytwelve, and see if this fixes.
Hi all, I think name of the topic can explain the situation I am in. Everything is updated to its latest.
For those who want to see the an example topic that’s affected(Also comments have this):
http://forum.gamesap.az/forums/topic/csgo-yeni-baslayanlar-ucun-qisa-m%C9%99lumat/
I am not a magician with CSS, but when I view the source of page, I see that in that area, I can’t seem to see the beginning og </p> paragraph (closing tag is there)
So I guess the problem is, bbpress is not giving the paragraph a proper starting point.
Have no idea how to fix this, Would be grateful for any help
Hi,
My website was hacked, i used wpscan (http://wpscan.org/) scan vulnerabilities
[+] Name: bbpress – v2.5.4
[!] Title: BBPress – Multiple Script Malformed Input Path Disclosure
Reference: http://xforce.iss.net/xforce/xfdb/78244
Reference: http://packetstormsecurity.com/files/116123/
Reference: http://osvdb.org/86399
Reference: http://www.exploit-db.com/exploits/22396/
[!] Title: BBPress – forum.php page Parameter SQL Injection
Reference: http://xforce.iss.net/xforce/xfdb/78244
Reference: http://packetstormsecurity.com/files/116123/
Reference: http://osvdb.org/86400
Reference: http://www.exploit-db.com/exploits/22396/
How to fix it ?
Thanks
If it helps anyone this will help you see all your bbpress duplicate topics at a glance with the duplicate ID
** Note these are just selects so they will not delete any data **
select
post_type
, post_date
, post_title
, post_content
, max(id) as dup_id,
count(*) as dupe_count
from
wp_posts
where
post_type in ('forum', 'topic', 'reply')
group by
post_type
, post_date
, post_title
, post_content
having count(*) > 1
order by post_type, post_date, dup_id
We can then take a variation of that and have it give us the start and end duplicate ranges for each post_type with counts of rows we expect to be impacted.
select post_type, min(dup_id) as start_dup, max(dup_id) as last_dup, count(*) as total_recs
from
(
select
post_type
, post_date
, post_title
, post_content
, max(id) as dup_id,
count(*) as dupe_count
from
wp_posts
where
post_type in ('forum', 'topic', 'reply')
group by
post_type
, post_date
, post_title
, post_content
having count(*) > 1
) i
group by post_type
of course you need to verify but this should help get you on your way
I am currently using CleanTalk, itโs working very good for me, 100% zero spam.
but it only allow 14 days trial and after that, I will need to pay.
Does anybody know any free anti-spam plugins (for BBPress) that doesnโt have Captcha?
Thanks ๐
Amazing work man, thanks so much.
your welcome ๐
I need to figure out where to post each code in my theme,etc.
Should I also put codes in bbPress plugin, or not? Since it might get deleted once updated, right?
you copy bbpress templates into your child theme so its okay when bbpress updates, i explain exactly what template to copy and also i show you a snippet of where to put the code by the original code.
you put custom css into anything that can handle custom css
in bbpress.css in your child theme(you copy the original in your child theme)
in your child themes css stylesheet
the jetpack plugin module custom css
a standalone custom css plugin
I’ve been trying to figure this out for several days, but can’t get my head around the error.
Every time I create child forums or categories within a forum, they return 404 errors when clicked on, evern though they’ll display how many topics are inside said forum.
When I convert existing forums to categories, the topics inside don’t show but the page does load.
I’ve searched the BBPress forums for an answer and see several other threads from people having issues with 404s, but no real answers.
Ive gone through the tools > forums and reset everything.
I’m using standard forum permalink settings and nothing is working.
Any help would be much appreciated.
Thanks ๐
The issue is getting wordpress search to display the results in a meaningful way (ie bpress style)
This plugin which is old claims to do this, but there is a warning that it shows private forum results, is unless all your forums are open I wouldn’t use it.
https://wordpress.org/plugins/search-bbpress/
Try it and see if it works