Skip to:
Content
Pages
Categories
Search
Top
Bottom

Admins unable to access wp-admin dashboard

Published on July 22nd, 2014 by etellewyn

I have had this strange issue on two different sites now, where after installing BBPress, admin accounts are unable to access wp-admin directly. I can get to the sub-pages just fine such as themes, menus, etc, but when I try to go to the main wp-admin page, it tells me “You do not have sufficient permissions to access this page.”

When I click the “Dashboard” link from the admin, it redirects me to the Updates page.

And, interestingly, when I deactivate BBPress, the Dashboard menu item in the admin disappears entirely!

Clearly something must have gotten corrupted somewhere. Anybody have a fix?

Forum list cutting off

Published on July 22nd, 2014 by acarpous

Running latest WP and bbpress versions, the main index list of forums at /forums is cutting off midway through the list:

http://www.londonfosteringachievement.org.uk/forums/

I feel like this is probably something very easy to fix but can’t seem to locate the issue, any help gratefully received!

Adding a New Thread Link and New Reply link On top of the forums

Published on July 22nd, 2014 by andys27

I’ve just started using bbpress and I like the simplicity of it. I’ve been trying to customize it to my need for the past 2 weeks (yeah, I am slow). This is something that I came up with that I’d like to share with the community since I’ve learned so much from over here. And I am really proud of myself for coming up with this since I usually suck at php and css.

If you want a new topic, or new reply button on top of your topics list ore replies list.
You can just add this code to your functions.php and you are good to go. This way, it will only show a “new topic” link if the user is logged in. If they are not, then it’ll show a text saying “to post a new topic register or login”. Of course, you can change the code to whatever you want. And make sure you change the links to your login and register pages. And you can add class to customize the text with css.

//function to add new topic thread
function bbp_login_thread_link() {
if ( is_user_logged_in() ) { ?>

<a href="#new-post">Create a new thread</a>

<?php }

else { ?>

<p> To create a new thread <a href="http://yourwebsite.com/login">login</a> or <a href="http://yourwebsite.com/register">register</a></p>

<?php }

}

add_action( 'bbp_template_before_single_forum' , 'bbp_login_thread_link' );

//function to add new reply thread
function bbp_post_reply_link() {
if ( is_user_logged_in() ) { ?>

<a href="#new-post">Post a Reply</a>

<?php }

else { ?>

<p> To post a reply <a href="http://yourwebsite/login">login</a> or <a href="http://yourwebsite/register">register</a></p>

<?php }

}

add_action( 'bbp_template_before_single_topic' , 'bbp_post_reply_link' );

I am hoping you guys can add this to this article which has examples of layout and functionality. That article helped me immensely and I will feel honoured to have contributed to it.

New Topic Form Via Shortcode Adding Characters in Email Notification Title

Published on July 22nd, 2014 by surachar

soi-seattle-kinship.org
WP 3.9.1
Dandelion Theme w/child theme: Sufi Order International v2
bbPress 2.5.4-5380
BuddyPress 2.0.1
Easy WP SMTP 1.0.9

Hi. I just added a page with the shortcode

You must be logged in to create new topics.

and it is adding some characters (see example below) to the title of the new topic in the email notifications. Will you please tell me how I can get rid of these?

Thank you.

Sincerely,

Sura
——–
From: “SOI-Seattle Kinship” <mail@soi-seattle-kinship.org>
To: noreply@oi-seattle-kinship.org
Sent: Sunday, July 20, 2014 10:13:57 PM
Subject: [SOI-Seattle Kinship] New 'Post A New Topic' Link and Page
——
from: SOI-Seattle Kinship <mail@soi-seattle-kinship.org>
to: noreply@oi-seattle-kinship.org
date: Mon, Jul 21, 2014 at 9:26 PM
subject: [SOI-Seattle Kinship] Roawia Saad…the sound of pure BLISS!!
signed-by: soi-seattle-kinship.org
——-
from: SOI-Seattle Kinship <mail@soi-seattle-kinship.org>
to: noreply@oi-seattle-kinship.org
date: Mon, Jul 21, 2014 at 9:37 PM
subject: [SOI-Seattle Kinship] New 'Post A New Topic' Link and Page
signed-by: soi-seattle-kinship.org

Forum root lost styling?

Published on July 22nd, 2014 by SeeingBlueS2

http://greatarchitect.us/forums
I don’t know how it happened or why nor do I know how to fix it. I’ve tried deactivating and reactivating, no help. All other forum links are styled just fine, just seems to be affecting /forums only.

I’m hoping someone can explain this to me and help me fix it.

Thank you.

Showing BuddyPress hidden group forums to group members on bbPress forum index

Published on July 22nd, 2014 by LMD

I originally posted this on the BuddyPress forums and it was suggested over there that I post it here too.

Rather than copy/paste it, here is the link to the original post:
Showing BuddyPress hidden group forums to group members on bbPress forum index

Any help woud be appreciated.

How to make Forum only show topics of groups you are in?

Published on July 22nd, 2014 by Leonyipa

How to make Forum page (display topics by freshness)
only show topics of groups you are in?

null
at the moment, it shows also the topics in groups that I am not in.

View my post, Most popular topic links

Published on July 22nd, 2014 by ttmt

Hi all

How would I add a ‘Most popular topics’ link to show a list of the most popular topics and a ‘View my posts’ link so user could view a list of there posts

Regards

ttmt

Shortcode Topic – Add Reply Form

Published on July 22nd, 2014 by bm_kabin

Hi guys, I’m using the shortcode to include a topic on my post. Would it be possible to have the reply form above the topic? How would I modify the template to remove the displayed breadcrumb as well?

Simple WordPress pages with limited access based on user bbPress role

Published on July 21st, 2014 by NewSha

Is there a way to create simple WordPress pages with limited access to users based on their bbPress roles?

For instance, only Participants can access forums and see topics. Similarly, I want to create a normal WP page which would be accessible only to Participants (and admins of course).

Skip to toolbar