I installed BBpress on wordpress, but when using HTML tags then these are not working.
They are also not white or anything, it’s totally not in the post. Bold, Italic etc are working fine.
For example which code is not working:
eg
http://www.naturalparenting.com.au/natural-parenting-forums/topic/what-did-your-babies-weigh-at-birth/
I have tried everything. I figure its something simple but cant work it out
Latest wordpress and bbpress version.
I’ve just started working on a plugin that will have some additional shortcodes in it
the only functional one so far is the ability to show the latest xx topics
you can download it from here
bbp additional shortcodes
you use the shortcode
[bbp_display_topic_index show=’5′]
I would like to display the latest 5 topics, exactly as displayed on the homepage of bbpress. How do I go about this, I can’t seem to see a shortcode that would work?
Can one bbPress plug-in work across different WordPress sites ? I would like to put it on : http://zestetik.fr/magazine/ & http://www.anti-age-magazine.com/ ? (same questions/answers will be display on both sites)
Thanks !
but i don’t want this boring theme
Yes, I know that – it was simply to test that it was a theme issue
as I said before
you’ll need to contact their support site for this as it’s a paid theme
http://themeforest.net/item/x-the-theme/5871901/support
they should be able to help you
Themes can be very complicated, and we don’t offer a service to make bbpress work with bespoke/paid themes – that is for the theme authors to do 🙂
and the second problem…
the logon widget is held in :
wp-content>plugins>bbpress>includes>common>widgets.php
I suspect you’ll already know that it is bad practice to alter core files, as they get overwritten on upgrades.
You’d do better to fork the code into your functions file, rename and create your own widget based on that.
and the second problem is that i have changed the wordpress login url to
http://ifunts.cf/member-area how i can change it in bbpress login widget so it will work
is there any file i can modify i know php pretty well but don’t know wordpress dev and bbpress very well but i am intrested in solving the issues please help me and thanks for the reply
Suspect this is a theme issue
Can you switch to a default theme such as twentytwelve for a moment to see if that fixes. If so come back and we can try and get your theme to work with bbpress
Hi!
I use the 1.7 version.
Listen… When I red your last message, I began to make a clean installation of my bbPress forum with Private Groups plugin on a server (I developp on localhost) in order to give you an access and to make it easier for you to check what should be wrong with the plugin.
At the beginning, everything seemed to work correctly (without any bug)!
Then I changed the slug of my 2 forums (slug? I don’t know if it is the right word in english. I mean, the name that is directly used in the permalink).
… and issues appeared!
– When no top level forum is defined, any logged user can see all forums in the index (even if visibility option is not activated in Private groups). He can’t access to the “private” one but he see it.
– Search don’t hide ‘private group’ topics and replies from search results.
I tried to definitly delete the forums and create them again but it didn’t change anything…
So what? … I don’t know!
I will send you an email in a few minutes (I’ve found your address on your site) with further informations (access code to my site)
Regards,
mareva
I am getting this message as an admin on some of my forums:
“This forum is marked as closed to new topics, however your posting capabilities still allow you to do so.”
Nobody else is able to post to these forums.
I have checked that each of the forums doing so are marked as Open and Public and each of it’s parents forums are marked the same.
WP: 3.9.1
BBPress: 2.5.4
BuddyPress: 2.0.1
Well – I did what I should have done at the beginning I disabled all plugins (related or not) and enabled them 1-by-1. It turns out it was indeed a plugin – PaidMembershipsPro.
In the Advanced Settings of that plugin there’s a couple of settings that sound like they have nothing to do with bbpress, but after removing the ‘Filter searches and archives’ for members only setting the anonymous posts now show to anonymous users. I’ll have to determine the ramifications (if any) of that for other areas of the site.
Hope this helps any future searchers.
With the recent bbPress update, the way notification is sent is changed. Earlier individual emails are sent to each people, but now only one email is sent with all the email address in bcc. I guess this is done to prevent email bottleneck. But this seems to have caused a issue in my setup.
I use wpmandrill to send emails through the mandrill service. With the new change, the to and from address is changed to a default “do not reply” email address that is calculated using the current domain name. The code is present in the bbpress/includes/common/functions.php
$do_not_reply = '<noreply@' . ltrim( get_home_url(), '^(http|https)://' ) . '>';
So it becomes <nobody@domain.com>
When this address is used as “to” address, the mandrill service thinks that it is an invalid email address because of the angle brackets.
I went through the code, but there is no filter to change the $do_not_reply variable.
Hi,
Odd indeed – it’s driving me batty trying to go through all the code and determine what function could be doing this.
I’ve turned off any other bbpress related plugin I had, switched to standard Twenty Fourteen theme. I then go in as anonymous on a different browser, create a new topic and then I can’t even see the topic I just created (nor any other anonymous person’s topics).
The topic gets created, looks fine and I can see it. It’s just anonymous users can’t see any anonymous posts.
solved my own problem
found this
Add “Resolved” to Closed Topics in bbPress
instead of using function.php
i threw this into loop-single-topic ,
the way i have my topics arranged it shows below the title
for closed label
<?php
$topic_id = bbp_get_topic_id();
if ( get_post_type( $topic_id ) == bbp_get_topic_post_type() && bbp_is_topic_closed( $topic_id ) )
echo '<span class="closed">[CLOSED]</span>';
?>
for sticky label
<?php
$topic_id = bbp_get_topic_id();
if ( get_post_type( $topic_id ) == bbp_get_topic_post_type() && bbp_is_topic_sticky( $topic_id ) )
echo '<span class="sticky">[STICKY]</span>';
?>
Hi,
I have the latest bbpress and have it set to allow anonymous users to post/reply. While they can post and they can see my replies to a thread (as admin), they can’t see their own replies.
Anyway to allow anonymous users to see all posts, replies, and create new topics in a forum?
Thanks.
Hi There,
I’m working on my forum and i’m customizing my profile page(the one you can see other people’s reccords and number of posts)
the only thing i get to see are:
Forum Role
Topics Started
Replies Created
the fields in the code look like:
<p class="bbp-user-forum-role"><?php printf( __( 'Forum Role: %s', 'bbpress' ), bbp_get_user_display_role() ); ?></p>
i’m just wondering how to show first/lastname or only lastname.
hope you can help,
Best regards,
Kaluh
Tried applying the code and give me warning after activating the plugin
/* Plugin Name: BBPress Close Old Posts Description: Close BBPress 2.0+ posts that haven’t been updated in X days. Author: Raygun Version: 0.1 Author URI: http://madebyraygun.com Originally found here: https://wordpress.org/support/topic/plugin-bbpress-new-topic-notifications-new-reply-notications-too?replies=13 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ register_activation_hook(__FILE__, ‘bbpress_topic_scheduler’); add_action(‘bbpress_daily_event’, ‘bbpress_close_old_topics’); function bbpress_topic_scheduler() { wp_schedule_event(time(), ‘daily’, ‘bbpress_daily_event’); } function bbpress_close_old_topics() { // Auto close old topics $topics_query = array( ‘author’ => 0, ‘show_stickies’ => false, ‘parent_forum’ => ‘any’, ‘post_status’ => ‘publish’, ‘posts_per_page’ => -1 ); if ( bbp_has_topics( $topics_query ) ) while( bbp_topics() ) { bbp_the_topic(); $topic_id = bbp_get_topic_id(); $last_active = strtotime( get_post_meta( $topic_id, ‘_bbp_last_active_time’, true ) ); if ($last_active < strtotime( ‘-60 days’) bbp_close_topic( $topic_id ); } } ?>
using most of the code structure that robin gave me from
Display Topic Starter label around topic authors avatar in topic replies
how do i do the same for topic status like sticky, supersticky , closed
all i probably need to change from the code from the link is
if (bbp_get_reply_author_id() == bbp_get_topic_author_id() ) {
to something like
if topic status = sticky
i just dont know how to write that line correctly with the right code
Any help?
Hi!
I’m just begining with Private Groups plugin (and even with wordpress!), that seems to be a great plugin to manage users permissions to access to bbpress forums.
Just let me introduce my “configuration” in few words : I’m working with
– 2 forums (A and B)
– 2 groups (1 & 2)
– Group 1 is authorised to work with both forum A and B.
– Group 2 is only able to work with forum B.
I have 2 questions about Private Groups behaviors :
– SEARCH FUNCIONALITY : bpress search form or widget deal with all topics of all forums. I mean that the search functionnality does not take into account groups that are defined with Private Groups when displaying the results list. That’s true that a non authorised user can’t access to the detail of a topic (nor reply to it), but he can see all topics and even their content. Is there any solution to force the search functionnality to only deal with authorised combination forum/groups defined with Private Groups?
– PARENT FORUM : maybe I’m wrong but the only way I’ve found to work with Private Groups is to define one parent forum (the father of all) and subforums. The point is I have no need of any parent forum. Is there anyway to keep all forums at the same level without define any parent forum?
Thank you for any help or idea…
mareva
Hi everyone
I’m using bbpress 2.5.4 with buddypress 2.0.1 and theme Oblivion.
Hi have problems with the bbpress extention.
When i want to create a forum or a topic from the website, it need validation on the dashboard by saving the forum to see the new content…
How can I resolve it?
Thank you
Hi, i have reset the forum, and run import again.
These are my selections:
source platform: vbulletin3
–database connections data–
row limit: 100 row
delay time: 1 minute
convert users: checked
restart: checked
clean previous installation: checked
log:
– start conversion
– no data to clean
– user conversion (0-99)
– user conversion (100-199)
– cuser conversion ….
– Delete the default password of WordPress users (1200 – 1299)
– forum conversion (0-99)
– calculation forum hierarchy (0-99)
– conversion threads (0-99)
– conversion threads (100-199)
– conversion threads (…)
– conversion threads (12600-12699)
– No stickies to stick
– No super stickies to stick
– No tag to convert
Repair any missing information: Continue (<- this is a link to /wp-admin/tools.php?page=bbp-repair)
WordPress database error: [Table ‘vbulletincopy.tagthread’ doesn’t exist]
SELECT convert(tagthread.threadid USING “utf8”) AS threadid,convert(tagthread.tagid USING “utf8”) AS tagid,convert(tag.tagtext USING “utf8”) AS tagtext FROM tagthread AS tagthread INNER JOIN tag AS tag USING (tagid) LIMIT 0, 100
After this message i click “Continue” and run the “repair page” one at a time.
All operations are successful except “Count the number of threads in which each user” has replied … Failed!
No replies on forum. Only one replies for each thread.
I have wordpress 3.9.1 and BBpress 2.5.3
I was able to get a custom taxonomy associated with topics only partially working with bbPress 2.6a and WP 3.8, but the performance of queries was terrible compared to using postmeta. A query using a custom taxonomy that took 3.8 seconds took only 0.01 seconds with the same information stored in postmeta. So performance needs to be taken into account.
Two ideas.
1. If using a multi-site, start a subdomain for bbPress and activate it on that site alone.
2. Using a plugin called – https://wordpress.org/plugins/plugin-organizer/ As Diphda mentioned, bbPress loads on every page. This plugin can block any plugin from loading on pages where it is not required (for bbPress where there are no short codes or forums).
The only draw back is your Admin panel will still be sluggish for those who are experiencing a similar lag, but visitors will experience faster load times.
Hope this helps.
I found this code in my files, try this
/*
Plugin Name: BBPress Close Old Posts
Description: Close BBPress 2.0+ posts that haven't been updated in X days.
Author: Raygun
Version: 0.1
Author URI: http://madebyraygun.com
Originally found here: https://wordpress.org/support/topic/plugin-bbpress-new-topic-notifications-new-reply-notications-too?replies=13
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
register_activation_hook(__FILE__, 'bbpress_topic_scheduler');
add_action('bbpress_daily_event', 'bbpress_close_old_topics');
function bbpress_topic_scheduler() {
wp_schedule_event(time(), 'daily', 'bbpress_daily_event');
}
function bbpress_close_old_topics() {
// Auto close old topics
$topics_query = array(
'author' => 0,
'show_stickies' => false,
'parent_forum' => 'any',
'post_status' => 'publish',
'posts_per_page' => -1
);
if ( bbp_has_topics( $topics_query ) )
while( bbp_topics() ) {
bbp_the_topic();
$topic_id = bbp_get_topic_id();
$last_active = strtotime( get_post_meta( $topic_id, '_bbp_last_active_time', true ) );
if ($last_active < strtotime( '-10 days') )
bbp_close_topic( $topic_id );
}
}
?>
change the -10 days to whatever you want
Basically just create a file called say ‘close.php’ and put this code in it. Create a directory in your site
wp-content/plugins/close
and put the file in there
then go into
dashboard>plugins>installed plugins and activate it
I haven’t tested this.