Hi,
today I have made the update to version 2.54. Now it works no longer correctly with permalinks (instead of the topic-title, now the ID will be used). The settings in WordPress are unchanged: title in the permalink. In wordpress-posts the permalinks works well as always. The problem is only in bbpress.
And one more thing:
Until the update it was always automatically included as the reply-title:
“Reply to: … (post title) …”.
Now, the field for the title in a reply to a post is always empty!
What’s going on? Until yesterday (before the update) everything was ok.
Please, give me your help.
Thank you very much says
Morgensonne
I want to add profilr like one here where user can enter some details and it shows all its replies and topics. How to do that?
sorry for my english.
i’ve installed bbpress for a month from importing smf too bbpress. i just realized the categories & tags become blank page when bbPress installed… ( i have deactivated bbpress, and the categories & tags become work)
one of my category
http://japanesia.org/category/berita-film-jepang-dan-dorama-jepang/
any sollution?
What i mean is i am using bbpress on my wordpress site. It has forum and whenever someone post any thing some points are awarded to him using mcreed point system. But i dont want it to be over used.
So i want to impose restriction like :-
After posting 10 posts in a day the 11th post will not get any points
Or
A user can only post 10 post no more than that.
I will prefer the first one more!
Is there any way to do any of this? Pleas reply
I want the users to get email alerts every time their forum role changes.
Namely, I want to notify users only if their role has changed to Participant.
I found a way to do this with standard WordPress roles, but it doesn’t work with bbPress roles.
http://clicknathan.com/web-design/notify-a-wordpress-user-when-their-role-has-been-changed-to-a-specific-role/
I tried changing if ($new_role == 'contributor') to if ($new_role == 'participant') and even to this if ($new_role == 'bbp_participant') – nothing worked.
WordPress version: 3.8.2
bbPress version: 2.5.3
Hi there –
I tried contacting WishList with this particular error I’m seeing, but they said it fell outside of their scope of support.
When a non-logged in user views the forum, they must log in at the bottom to create a new topic. If a user logs in via this login form, and then clicks on “Cart” (powered by WooCommerce), the user is logged out. This is only happening via the login form in the forum – it does not happen when logging in through other channels.
I found out this was a conflict with WishList by deactivating all plugins and then re-activating one by one. When WishList is deactivated, I don’t see this error, but once it’s reactivated, it’s back.
Does anyone have any idea where I could start to try to troubleshoot this?
Thank you!
Hello,
I just created my bbpress forum and I don’t get it into a Full Width site. I use the “The7” theme from dream theme and there exists no full width .php site which I could copy and rename to bbpress.php. So would could I do?
WP version 3.9.1
bbPress version 2.5.4
Web site http://raptureintheairnow.com/
I have deactivated all my plugins. The only one turned on is bbPress. The page loads half way then gets the error:
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@raptureintheairnow.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Some of the sub forums load with no problem like:
MAIN DISCUSSION FORUM
I called my hosting company and they said to disable all plugins and turn them back on one at a time. bbPress is the only one turned on and getting these errors.
The profile edit page seems to be broken. When I view it all I see is
Profile Topics Started Replies Created Favorites Subscriptions Edit Name Name First Name Last Name Nickname Display Name Seedsoms Contact Info Contact Info Website About Yourself About Yourself Biographical Info Account […]
I assume I’m supposed to be able to edit a lot of these values, such as “Edit Name” or “About Yourself” but it’s all just static text. The […] you see above is linked, but linked back to the profile edit page I am already on.
Hey everyone,
I’m having a bit of trouble getting my Forum into full-width format. I’m using the Oxygen theme which by default has a left and right sidebar.
I’ve already copied my “page-template-fullwidth.php”, renamed it as “bbpress.php”, and installed bbPress WP Tweaks to make sure that bbPress is injecting itself into the “bbpress.php” template.
Given what I’ve read – this should’ve done the trick. I’m wondering if it’s something weird with Oxygen Theme’s templates. I’ve included the code of the Full Width Template i’m using here below. Does anyone see anything out of the ordinary that could be preventing me from getting full-width formatting?
<?php
/**
* Template Name: Full Width
*
* Full width page template with no sidebar.
*
* @package Oxygen
* @subpackage Template
*/
get_header(); // Loads the header.php template. ?>
<div class=”aside”>
<?php get_sidebar( ‘primary’ ); // Loads the sidebar-primary.php template. ?>
</div>
<?php do_atomic( ‘before_content’ ); // oxygen_before_content ?>
<div class=”content-wrap”>
<div id=”content”>
<?php do_atomic( ‘open_content’ ); // oxygen_open_content ?>
<div class=”hfeed”>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php do_atomic( ‘before_entry’ ); // oxygen_before_entry ?>
<div id=”post-<?php the_ID(); ?>” class=”<?php hybrid_entry_class(); ?>”>
<?php do_atomic( ‘open_entry’ ); // oxygen_open_entry ?>
<?php echo apply_atomic_shortcode( ‘entry_title’, ‘[entry-title permalink=”0″]’ ); ?>
<div class=”entry-content”>
<?php the_content( __( ‘Continue reading <span class=”meta-nav”>→</span>’, ‘oxygen’ ) ); ?>
<?php wp_link_pages( array( ‘before’ => ‘<p class=”page-links”>’ . __( ‘Pages:’, ‘oxygen’ ), ‘after’ => ‘</p>’ ) ); ?>
</div><!– .entry-content –>
<?php echo apply_atomic_shortcode( ‘entry_meta’, ‘<div class=”entry-meta”>[entry-edit-link]</div>’ ); ?>
<?php do_atomic( ‘close_entry’ ); // oxygen_close_entry ?>
</div><!– .hentry –>
<?php do_atomic( ‘after_entry’ ); // oxygen_after_entry ?>
<?php do_atomic( ‘after_singular’ ); // oxygen_after_singular ?>
<?php endwhile; ?>
<?php endif; ?>
</div><!– .hfeed –>
<?php do_atomic( ‘close_content’ ); // oxygen_close_content ?>
</div><!– #content –>
<?php do_atomic( ‘after_content’ ); // oxygen_after_content ?>
<?php get_footer(); // Loads the footer.php template. ?>