Search Results for 'bbpress'
-
Search Results
-
Topic: Some questions
Hi
I want to use the bbpress and have some qeustions:
1. If I don’t people to registar to the site I dont need to create all the pages and allow anyone to post?2. How can I modarate a non users posting? Approvre it before?
3. I have a responsive theme will that also be responsive?
4. If i’m using a caftcha plugin for contact form and I also want one for the bbpress which should I use?
Thank you
Topic: Forums UL LI elements help
Wordpress Version: 3.8.1
BBPress Version: 2.5.3Hi guys, the UL LI elements of my forums are following the styling declared for UL LI in my style.css file instead of the bbpress.css file. How do I correct this? Any help is appreciated.
Here’s the site: http://www.uptmcaa.com/forums
I am using WordPress-bbpress at the my site.
When many messages were contributed to a topic and it became 10 pages or more, the link to 10th page had broken.The following code is the cause.
It will replace from “&paged=10” to “0”.bbpress.2.5.3
C:\xampp\htdocs\bb\wp-content\plugins\bbpress\includes\topics\template.php
895 line// Remove first page from pagination if ( $wp_rewrite->using_permalinks() ) { $pagination_links = str_replace( $wp_rewrite->pagination_base . '/1/', '', $pagination_links ); } else { $pagination_links = str_replace( '&paged=1', '', $pagination_links ); }One solution for correcting this is the following. (Insert “if($pagination[‘total’] == 1)”)
// Remove first page from pagination if ( $wp_rewrite->using_permalinks() ) { $pagination_links = str_replace( $wp_rewrite->pagination_base . '/1/', '', $pagination_links ); } else if($pagination['total'] == 1) { $pagination_links = str_replace( '&paged=1', '', $pagination_links ); }I’m looking to integrate BBPress with my BuddyPress theme and the guys over at BP support suggested I come here.
Someone mentioned I need to copy some BBPress files and folders into my BuddyPress theme but I’m not sure which ones to copy.
A beginners guide would be nice…?
This post sorta serves as my lousy introduction also. Hi to the community!
Topic: phpBB3 import dont work
Hi
i have WP 3.8.1 and bbpres 2.5.3 , i’m using phpBB3 but now i will work with wordpress an there own forum (bbpress)
i used in tools -> forums -> import forums
typed the database datas in and klick STARTafter that the import start but it import ONLY the user nothing else.
i have tryed this 3 times and it runs alway over one hour and only user are imported
no forums no topics no cats ……NEED HELP PLEASE
Just curious as I’m not a PHP-er and learning each day.
What I’m trying to make is a front-end tab-system that shows three tabs
Tab [1] = Topics
Tab [2] = Replies
Tab [3] = Refresh, just a reload of the page
Topics,
This should be a very easy query-/loop in general, it’s just a list of all new topics that have been added to my forum. There’s only one little thing, it should order at the date of creation so that when an older topic gets a reply it doesn’t bounce to the top of the list.Replies,
This should be a query for latests updated topics of any age, if a topic of 5 years old receives an update or bounce it should jump to the top of this list. + newly or older created topics without replies shouldn’t get listed inside this second ‘Replies’ tab.I came up with this idea:
<?php if ( bbp_has_topics( array( 'show_stickies' => false, 'order' => 'DESC', 'posts_per_page' => 120, 'max_num_pages' => 1 ) ) ): ?> <?php while ( bbp_topics() ) : bbp_the_topic(); ?> <?php if ( bbp_get_topic_reply_count() ) { bbp_get_template_part( 'last-topic-activity/last-replies-loop' ); } ?> <?php endwhile; ?> <?php endif; ?>posts_per_page => 120 is a little bold but it’s just for testing right now.
Just curious if this is okay to work with, I found the bbp_get_topic_reply_count() function and it has a True or False statement so I thought lets just check if the topics have a reply_count … if it’s true than list a bunch of stuff through the custom-loop template I made.Hope somebody can verify if this is okay, it looks like it’s working.
I’m using WordPress version 3.8.1 (the latest as of this writing) and bbPress version 2.5.3 The url wouldn’t show the problem since the forum is private and you would only see “Oh bother! No forums were found here!” on the page as a non-logged in non-member of the site. This question also relates to the WordPress dashboard rather than the site itself. I’ve given a user on the site the bbPress role of Moderator with the expectation that he should be able to set up new forums, however, when he logs in, he can only see/access topics, replies and profile in the WordPress dashboard. There is no link to “Forums” where he can add new ones. Why is this the case when according to the roles information on this page: http://codex.bbpress.org/bbpress-user-roles-and-capabilities/ a Moderator “can create and edit forums. Can create, edit and delete other users’ topics and replies. Can manage Tags, and moderate a forum with the moderation tools”?
Hello,
I’ve set up bbPress on a clients’ website. They have a private forum and unfortunately the word “Private” gets appended to the forum title twice. The actual title that I created is “Parish News and Discussion” but on the page it reads “Private: Private: Parish News and Discussion” Is there a reasonable way to fix this? I am not a php developer so please keep that in mind when responding. Thanks in advance for any help you can give me!
– SaraHi
I would like to change the edit profile link in the admin bar to link to the edit profile link in bbpress.
I this possible?
Thanks
Websiteguy