Hi everyone,
I want to remove the last post date from my bbpress forum and topic pages:
I want only this to show up:
Freshness
[AVATAR IMAGE] Username
Basically i want to get rid of the date. I tried using CSS with this code:
li.bbp-forum-freshness a,
li.bbp-topic-freshness a{
display: none;
}
But it hides both the date and the username.
So, how can i hide only the date and leave the username?
Please help.
You’ll want to fully update to bbPress 1.1/1.2 first. Make sure your forums work after having done so. As long as the 0.9 to 1.1 migration was successful, moving to 2.x should be exactly as described above.
The data schema changed from 0.9 to 1.1, and the converter in 2.0 is not for 0.9.
When creating new user, bbPress role is not added. I don’t have any roles plugins or anything like that. I create new Subscriber user, and it doesn’t get bbPress role. I am using bbPress 2.2.3. Is there something needed to make this work, or should it work automatically?
EDIT: OK, there is a setting to allow this, and it is disabled by default for some reason.
EDIT 2: And no luck, even with this option ON, roles are still not assigned to new users.
It’s not always necessary, but everybody’s plugin combinations are different.
A link to your site, and any additional information you can give allows us to be much more helpful than the “HALP! IT BROKE!” reply. 🙂
Hey! First time around here, and I’m a total newbie to bbpress. Glad you see you all!
I have a slight problem with my bbpress installation. Users from the forums see an “Edit this” link at the top of the topic and when they use it they can edit the topic in the WordPress post editor.
Is there a way to remove that link?
Thanks!
i’m using this plugin for bbpress logins w facebook twitter google etc, seems to work fine
https://wordpress.org/extend/plugins/wordpress-social-login/
sam
No I did not update the permalinks
is that necessary?
I have never done this before
Hello is anyone able to help? My Forum is down.
I am still on WordPress 3.4.2 and I do not want to upgrade to 3.5 until this problem is fixed with bbPress.
did you updated the permalinks?
I upgraded to the new bbPress version and now my Forum returns a 404 Page!
Please help.
Anonymous UserInactive
Hi castresna,
i’ve the same problem you describe above. After importing from bbPress 1.2 the replys and topics are mixed up. I’ve tried it a ten times – but no results.
How have you solved this problem for your forum?
I appreciate any advice. 🙂
Thanks.
Hi,
I saw somwhere a topic about Forums, Topics and Replies somwhere in the forum and want to confirm that it exists even in just releases 2.2.3. In admin and on frontend bbpess post types labels don’t get translated (tested on 2 different sites, translated in 2 different tools, my language uses extended latin chars).
Another issue is with the User profile rules (permalinks, line 873 in bbpress.php). It’s possible to filter rewrite rules for user favorites and subscriptions but topics and replies (and it’s pagination) are hardcoded, even if there are functions available to use instead (and filter if needed)
I think that now bbPress is more popular than BuddyPress.
Some fixes in bbPress 2.2.3:
- Improve compatibility with some themes.
- Fix integration with BuddyPress Group Forums.
- Fix BuddyPress Activity Stream integration.
It’s also fully compatible with WordPress 3.5.
Indeed this awesome plugin does exist by @jmdodd
bbPress Topic to Post Converter
Add “Convert to Post” action for forum moderators.
https://github.com/jmdodd/bbpress-topic-post-converter
I want to change the output of the “Code” editor button of the bbpress plugin to use my custom shortcode for posting code in the forums. How can I do this? I’m unable to find any reference to the buttons in any of the templates.
This is my first time trying bbpress. Installation went without a hitch, but I noticed a weird behaviour. After installing bbpress and setting my forum base to ‘forums’ and my forum slug to ‘forum’, going to mydomain.com/forums shows me my blog page instead. And, going to mydomain.com/forum gives me a Not Found error. Any ideas of what I am missing?
Ideally, I’d like my readers to access the root of the Forums by going to mydomain.com/forums.
Ah in that case, I think thats great. Since the author is the primary content creator of the thread, all things considering, I think it will work well.
You should considering polishing up that code and releasing it as a bbPress plugin on the WordPress.org plugin repository 🙂 You’d have to dynamically hook into the user edit page and maybe a few other changes, but the base of the work there is probably done.
So here is how I would do it (I think) if I wanted something easy yet half way elegant.
I’d create a /login page in WordPress that has a custom page template (page-login.php) that contains some custom stuff. It still breaks the process up into two parts, which is not ideal, but its the easiest way without putting in some time to get around that.
Essentially, it would be something like this. First ask for the customer ID. They enter that in and submit it. If it’s valid then reload the page and show the bbPress login.
if ( isset( $_GET['cid'] ) && !empty( $_GET['cid'] ) ) {
// cid (customer ID) is present, show the bbPress login form
echo 'Please enter your username and password to complete the login process';
echo do_shortcode('bbp-login');
} elseif ( $_GET['error'] == true ) {
// cid entered was not valid
echo 'The customer ID you entered is not valid.';
} else {
// cid is absent so show the form to validate it
// do your custom form here that asks for the customer ID. Then if the customer ID
// is correct/valid reload this page like /login?cid=123456 which will show
// the bbPress login form.
}
Another option would be on the first form to ask for the username. Then you could take that and have it auto fill in on the login form using the WordPress login form function (wouldn’t be able to use the bbPress shortcode for this).
Jared, thanks for the feedback. The more I thought about it, about a thousand different ways to do it popped into my head as well (spun my brain into a scrambled egg). At this point, I’ve basically started to write the custom login from the ground up. I’m going to create a shortcode out of it at the end.
I just started it but so far I just have the basic connection and query going:
function restrictForum(){
$db_name = 'dbname';
$con = mysql_connect("URL","username","password*");
mysql_select_db("$db_name")or die("cannot select DB");
$cust_no = $_POST['custno'];
$sql = "SELECT * FROM customer_data WHERE customer_number = $cust_no";
echo('Customer #');
}
I previously had this small bit into a shortcode that just checked if the user was logged in then provided the bbpress login form if they weren’t:
function restrictForum(){
if(!is_user_logged_in()){
echo('You must login to access the forum');
echo do_shortcode('[bbp-login]');
}
}
add_shortcode('forum-login-restrict','restrictForum');
i am having trouble in changing text color in bbpress.
my wordpress version is Version 3.4.2 and bbpress version is : 2.2.2
I am no expert in Css but have a little knowledge about css,after installing bbpress every thing was working perfect until i realised i am not able to view what i have written in the subject of a topic because my text color matches background color,resulting in a white screen.I went through some similar related topic but sadly was unable to fix the problem.If some one can guide me step by step what should be done to erase this problem i would be grateful.I use a custom theme on my website named PrestigeDarkVol 1.4.Below is a screen shot of the problem faced by me.
Do let me know which Css to edit and which lines and the location of the css file in file transfer protocol.Any help related to this topic is much appreciated. thank you very much in advanced.looking forward for a solution.
link to image : http://i1057.photobucket.com/albums/t388/p7ayboy/Untitled-1.png
Of course the user has to add his G+ profile URL manually (so that the rel=”me” link points to his/her profile) for his picture to show up in SERPs, but having a rel=author in the links from topics or replies to his/her profile still makes sence.
If future versions of bbpress would start using more HTML5 each reply could be an <article/> element which would be more semantic for Google authorship.
But for now only one author for a page counts ( the first one ). Thats why I suggested using lead topics so that the topic creator get the authorship on paged topics.
The thing that makes inline images tough is non-admin users cannot use the tag and shortcodes are not an option.
Currently there is an issue on trac (#1916) that would make it where img tags do not get filtered out. Once that’s done it would open the gate for plugins to handle inline images pretty easily.