Search Results for 'bbpress'
-
Search Results
-
Hello,
(Sorry for my bad english)
I have a problem with my bbpress.
I’m beginner in bbpress.My problem is for each forum, i have the same date.
And the link in the date are bad too.I have no idea where the problem come …
Do you have any idea ?Thx for you’re help !

See you !
Bob
Topic: Adding username to reply
Hi!
I would like bbpress to add post author’s username, when I click to “Reply” link. What should I do for that?
Hello,
I have experienced an issue importing posts from a BuddyPress group forum. Originally I lost the link to all topics when I manually deleted some spam users directly in the tables wp_users and wp_bp_groups_members. In the group forum it simply stated “Sorry, there were no forum topics found.” So I thought I would upgrade to bbpress using the instructions here: https://codex.buddypress.org/getting-started/guides/migrating-from-old-forums-to-bbpress-2/
I followed all instructions up to the import process and then the import just got stuck – i.e. nothing was imported.
Then I noticed no forums are now listed under Forums.
So I created a new forum, which looks different to the previous forum (presumably because I am now using bbpress and not the old Buddypress group forum – how to tell?). I can link this forum to my one Buddypress group, but now none of the old topics show – they are all still in the WordPress database, but I need to know how to get them into the new forum that I have created, or import them some other way.
I would be grateful for any advice.
Thanks,
Nick
This is an issue I am struggling for a long time now.
I have wordpress 4.3.1 installed and bbPress 2.5.8. The formerly created forums are running but I don’t see any Forum options in my dashboard. I have deleted the plugin and installed it again, to no avail.Even when bbPress is the only plugin activated it don’t show.
Please help.In loop-fourms.php file add your custom âAdd Topicâ button:
<a href="/new-topic/?ForumId=<?php echo bbp_get_forum_id()?>">New Topic</a>Add this code to a custom .php file or directly to your theme function.php file:
//BBpress New Topic Button // add_shortcode('wpmu_bbp_topic', 'wpmu_bbp_create_new_topic', 10); function wpmu_bbp_create_new_topic(){ if ( isset($_GET['ForumId']) ){ return do_shortcode("[bbp-topic-form forum_id=".$_GET['ForumId']."]"); }else{ return do_shortcode("[bbp-topic-form]"); } } //End BBpress New Topic Button //Make sure youâve created a custom page titled ânew topicâ with a friendly url of ânew-topicâ
Place the new shortcode we registered into this page:
[wpmu_bbp_topic]
This will automatically display contact create form of the selected forum if ID exists in the URL otherwise fall back to default shortcode.
You can see it in action on my site:
http://artofwargaming.net/forums/Hope this helps anyone who was looking to create a ânew topicâ button.
I canât take credit for this, this was all thanks to the help of the guys over at WPMUDEV â Sajid, Anang, and Tyler.
Hi there, i’m pretty new to this so i may well be doing something wrong but i just installed bbpress, got the bbp style pack to make it easier to pimp out my forum and i made 1 single change to see what was what… I changed the background colour to black from default. I went out of the room for 20 minutes, came back and went to make more changes but now it doesn’t want to change anything at all. I’ve tried changing the background colour back with no effect. I’ve disabled my caching plugin to see if that was having any effect but nay…..
I’ve even deleted ALL options from the bbp style pack options but it’s kept the styles on the page which is even stranger.
Please can someone help with this if they can as i’ve spent a whole week attempting another forum plugin only to realise that it was pony and i should have gone with this one in the first place but now i can’t this one to work either haha. đ
my website is 10tu8.com but it’s nowhere near a complete site just yet.
Thanks in advance for any help at all đ
Neil
Hello. I want to disable the edit profile link on my forum using bbpress, which I have found the following code to add to functions.php. It works, except for next to the username and profile pictures there is a comma, and it looks messy… anyone with php knowledge know why this code is producing a comma next to the username and profile pic?
Thanks
<?php
add_filter( ‘bbp_get_author_link’, ‘remove_author_links’, 10, 2);
add_filter( ‘bbp_get_reply_author_link’, ‘remove_author_links’, 10, 2);
add_filter( ‘bbp_get_topic_author_link’, ‘remove_author_links’, 10, 2);
function remove_author_links($author_link, $args) {
$author_link = preg_replace(array(‘{<a[^>]*>}’,'{}’), array(“,”), $author_link);
return $author_link;
}
?>I use the following code on a webshop to display all tags being used on the website in the
custom post typeproduct<?php $terms = get_terms( 'product_tag' ); if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){ foreach ( $terms as $term ) { print '<option data-filter="tag-'.$term->slug.'"value="tag-'.$term->slug.'">'.$term->name.'</option>'; } } ?>How do I find the equivalent for bbPress to `product_tag
Hi all
I have a question before I move forward installing bbpress. I will be creating a forum for my company that will have different categories based on company departments. Each category would be assigned a moderator within that department in the company and I need different moderators to be notified of new posts within their category.In other words, can you assign different admin notifications depending on the category a post is created in?
I hope that made sense and thank you for the help.
Chris