Skip to:
Content
Pages
Categories
Search
Top
Bottom

Can’t logout from WordPress

Published on September 6th, 2015 by Léo

Hello,

When bbPress is activate on my website, I can login without problem but then I can’t logout anymore (I have to delete cookies).
I’ve tested on a fresh WordPress install without plugins (except bbPress of course).

WordPress : 4.3
bbPress : 2.5.8

Help with Single Forum Shortcode

Published on September 6th, 2015 by nikhilnaik

Hello All,

I am using the shortcode on my buddypress integrated website. This shortcode is working fine. When the user logs in, he will be taken to a buddypress dashboard where this shortcode is executed and all the forum topics are shown.

The only tweak I would want to make it, reduce the number of topics being shown. The forum has many topics and hence when I am using this shortcode, all the topics are being shown up. Is it possible to change this shortcode in such a way that only the latest 3-5 topics from the forum is shown.

Thanks in advance!

Make new-topic- and reply-forms responsive

Published on September 6th, 2015 by project_subdomain

New topic and reply forms are cut off on the right side at screens smaller than 430px width.

Tried several combinations of FORM#new-post, .bbp-reply-form and FIELDSET.bbp-form, with width:100% or a fixed size for smaller screens. Testing with

.bbp-topic-form,
.bbp-reply-form{
width:10px;
}

for example effects that the form gets smaller in width, but not 10px or any other wished px-width. It will be always fix at a width of maybe 300px. Could there be some default CSS already that I don’t see?

Are these forms responsive by default, anyway?

Thanks for any help!

Admin Page – Fails on Install

Published on September 5th, 2015 by tjordan42

Ok, I’m running the newest version of WordPress, running the Irridescent theme by RocketTheme, and just tried (3 times) to install BBpress.

When I activate the first time I got directed to http://angeryamericansurvival.com/wp-admin/index.php?page=bbp-about

Then I get an error that says “You do not have sufficient permission to access this page.”
I’m the admin.. so I know I have sufficient permissions. lol.

I also don’t see ANY sign that the plugin is installed.
I’ve deactivated and reinstalled two more times. Nothing.
I never get the activation page on subsequent installations. I had to go back in my browser history to search for it.

Any ideas?

I’d really like to use BBpress but if even the initial installation causes problems, then I’m worried.

I tried switching themes to Twenty-Twelve to troubleshoot a theme-related issue but same results.

admin panel forbbpress?

Published on September 5th, 2015 by AilyRoot

Hi

we run latest wordspress 4.3 +bbpress 2.5.8+buddypress 2.3.3 and we are just told that

“bbPress also has admin side, and there you can easily remove large number of topics filtered by forum or user”

I did google and someone say admin panel path is /bb-admin ? but it shows 404 and I do see it on top menu bar either

is there any any admin panel for bbpress/buddypress or it is just integrated with wordpress’s admin?

it NOT, how to do these “remove large number of topics filtered by forum or user”? I do not see function like that on wordpress’s admin though~

Reply to posts by email

Published on September 5th, 2015 by demonboy

I know this is a recurring question but a lot of the responses are out-dated. The only thing I keep coming across is the Falcon project on github. Has anyone got this to work? Is there a user-guide for those of us who don’t understand github on how to set this up for bbpress?

Interested to know if anyone has managed to get replying to posts by email working and what solution you used.

Thanks in advance.

Use bbPress with an iOS/Android App

Published on September 4th, 2015 by Bapple

I am making a new website for a parent group which would use a forum in its core design. The site would consist of a main page with a blog which has comments that are tied to a forum topic. Similar to something like http://www.macrumors.com/. It would also have custom permission levels beyond the generic moderator, sub, and admin roles via plugins, and be locked with access codes. We are also planning on making a custom App for iOS and Android, or maybe even Windows using core tools like Xcode and Android Studio, Visual Studio, or Xamarin down the line. Right now I am trying to decide on what would be the best foundation for our site. Does bbPress have some sort of API that we could use, or do we need to look elsewhere?

what is the reply template tag

Published on September 4th, 2015 by klmnweb

Hi,

I am making a shortcode for bbpress use profile and here is the function

add_shortcode('myprofile', 'show_bb_profile');
function show_bb_profile() {
ob_start() ?>

<?php do_action( 'bbp_template_before_user_details' ); ?>

	<div id="bbp-single-user-details">
		<div id="bbp-user-avatar">

			<span class='vcard'>
				<a class="url fn n" href="<?php bbp_user_profile_url( get_current_user_id()); ?>" title="<?php bbp_displayed_user_field( 'display_name' ); ?>" rel="me">
					<?php echo get_avatar( bbp_get_displayed_user_field( 'user_email', 'raw' ), apply_filters( 'bbp_single_user_details_avatar_size', 150 ) ); ?>
				</a>
			</span>

		</div><!-- #author-avatar -->

		<div id="bbp-user-navigation">
			<ul>
				<li class="<?php if ( bbp_is_single_user_profile() ) :?>current<?php endif; ?>">
					<span class="vcard bbp-user-profile-link">
						<a class="url fn n" href="<?php bbp_user_profile_url( get_current_user_id()); ?>" title="<?php printf( esc_attr__( "%s's Profile", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>" rel="me"><?php _e( 'Profile', 'bbpress' ); ?></a>
					</span>
				</li>

				<li class="<?php if ( bbp_is_single_user_topics() ) :?>current<?php endif; ?>">
					<span class='bbp-user-topics-created-link'>
						<a href="<?php bbp_user_topics_created_url(); ?>" title="<?php printf( esc_attr__( "%s's Topics Started", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php _e( 'Topics Started', 'bbpress' ); ?></a>
					</span>
				</li>

				<li class="<?php if ( bbp_is_single_user_replies() ) :?>current<?php endif; ?>">
					<span class='bbp-user-replies-created-link'>
						<a href="<?php bbp_user_replies_created_url(); ?>" title="<?php printf( esc_attr__( "%s's Replies Created", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php _e( 'Replies Created', 'bbpress' ); ?></a>
					</span>
				</li>

				<?php if ( bbp_is_favorites_active() ) : ?>
					<li class="<?php if ( bbp_is_favorites() ) :?>current<?php endif; ?>">
						<span class="bbp-user-favorites-link">
							<a href="<?php bbp_favorites_permalink(); ?>" title="<?php printf( esc_attr__( "%s's Favorites", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php _e( 'Favorites', 'bbpress' ); ?></a>
						</span>
					</li>
				<?php endif; ?>

				<?php if ( bbp_is_user_home() || current_user_can( 'edit_users' ) ) : ?>

					<?php if ( bbp_is_subscriptions_active() ) : ?>
						<li class="<?php if ( bbp_is_subscriptions() ) :?>current<?php endif; ?>">
							<span class="bbp-user-subscriptions-link">
								<a href="<?php bbp_subscriptions_permalink(); ?>" title="<?php printf( esc_attr__( "%s's Subscriptions", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php _e( 'Subscriptions', 'bbpress' ); ?></a>
							</span>
						</li>
					<?php endif; ?>

					<li class="<?php if ( bbp_is_single_user_edit() ) :?>current<?php endif; ?>">
						<span class="bbp-user-edit-link">
							<a href="<?php bbp_user_profile_edit_url( get_current_user_id()); ?>" title="<?php printf( esc_attr__( "Edit %s's Profile", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php _e( 'Edit', 'bbpress' ); ?></a>
						</span>
					</li>

				<?php endif; ?>

			</ul>
		</div><!-- #bbp-user-navigation -->
	</div><!-- #bbp-single-user-details -->

	<?php do_action( 'bbp_template_after_user_details' ); ?>
 <?php
$output = ob_get_contents();
ob_end_clean();
return $output;
}

However, I am able to get the profile link for a user by this template tag get_current_user_id()

but how what is the template tag for a user to his replies & topics.

Thanks in advance

New topics and replies default to pending

Published on September 3rd, 2015 by jacguerrant

Latest WP and latest BB installed, using private replies, moderation and attachments plugins.

Moderation plugin is set to allow everything to show without pending. But any new topic and any new reply and any private reply sits unpublished as either pending or awaiting moderation.

Thanks for your help…

Jac

Move Sticky Topic to Original Date?

Published on September 3rd, 2015 by Matoca

I am trying to clean up the forum a bit. I have a super sticky topic of “Welcome, Blah Blah” It’s now over a year old and I want it to move down in the original time slot of January 2014.

I went into the dashboard to edit the topic, unstickied it, set it to “closed” and then saved it. It is no longer sticky but instead of moving down around the other topics in Jan 2014, it has remained at the top of the current topics as though I updated it. Well, I did kind of update it, but there are no new replies and I didn’t change the topic at all. The posting date still indicates Jan ’14.

I really don’t want to trash it or all the replies, they have historical importance, but I am confused how to make this move! I am used to being able to change the publish dates of pages and posts but the forum doesn’t seem to have the same ability.
Thank you for any help you can provide,
Matoca

Skip to toolbar