Skip to:
Content
Pages
Categories
Search
Top
Bottom

How can I change the colors?

Published on August 25th, 2013 by Techknowledgic

Hey

maybe this question is repeated and I read like 2-3 topics about this but I didn’t find that helpful for my case. I just wanna change the colors like the header border instead of being grey I want it to become blue. I am not so bad with css so I may be able to do it but I just need to know which file should I work with and what code should be changed

Thanks!

Getting strange new users!

Published on August 25th, 2013 by Techknowledgic

Hey

I am facing an problem which is everyday around 2 new users register to my forum and they are with weird names like wisjidyyus and jwjteeasa and many other names. The problem is that I have statcounter and histats and google analytics and the new users are not counted or seen by the stats and the registration page is in my website and not WP and has the stats code. so how can the users register to my website without visiting it? is it a bug or what?

Thanks

Problem with custom user role and hidden forums

Published on August 25th, 2013 by janhoos

Hey guys!

I’ve added a custom role to BBpress with this piece of code in a functions.php file in my theme:

function add_custom_role( $bbp_roles ) {
$bbp_roles[‘my_custom_role’] = array(
‘name’ => ‘ACN Lid’,
‘capabilities’ => bbp_get_caps_for_role(bbp_get_participant_role()) // i just want them to have the same capabilities as moderators

);

I also have a private forum that only this member can access. Right now it works through a member groups plug-in that shields it. But it still let the off limits posts show up in search results.

So I want to try and work within the BBpress system of private and hidden forums. Making the forums private won’t solve a thing, because for some weird reason, participants can also view that… Why is that?

But oh well! I’d like to include the list of capabilities found in the capabilities.php file with this custom role. Instead of the custom role taking the capabilities from the participant. I want to make the members only forums hidden, and make the ACN lid role be able to see the hidden forums.

How do I change the above code, to make it use the following capabilities:
$caps = array(

// Primary caps
‘spectate’ => true,
‘participate’ => true,
‘moderate’ => false,
‘throttle’ => false,
‘view_trash’ => false,

// Forum caps
‘publish_forums’ => false,
‘edit_forums’ => false,
‘edit_others_forums’ => false,
‘delete_forums’ => false,
‘delete_others_forums’ => false,
‘read_private_forums’ => true,
‘read_hidden_forums’ => true,

// Topic caps
‘publish_topics’ => true,
‘edit_topics’ => true,
‘edit_others_topics’ => false,
‘delete_topics’ => false,
‘delete_others_topics’ => false,
‘read_private_topics’ => false,

// Reply caps
‘publish_replies’ => true,
‘edit_replies’ => true,
‘edit_others_replies’ => false,
‘delete_replies’ => false,
‘delete_others_replies’ => false,
‘read_private_replies’ => false,

// Topic tag caps
‘manage_topic_tags’ => false,
‘edit_topic_tags’ => false,
‘delete_topic_tags’ => false,
‘assign_topic_tags’ => true,
);

Private Forum for Staff (or Specific User Roles)?

Published on August 25th, 2013 by Nykess

Is there an easy way to make this happen? I would like to set up a private staff forum, or a forum for specific user roles ONLY, where we can brainstorm ideas/etc.

theme bbPress.org

Published on August 24th, 2013 by gphp

What’s the name of bbPress.org’s theme?
Is it possible to download?

Thanks a lot!

Sub Forum Freshness, Topic and Post Counter styling

Published on August 24th, 2013 by Oken

WordPress 3.6
BBPress 2.3.2
Buddypress 1.8.1

Is there anyway to custom implement a Freshness, Topic, and Post counter for subforums in the front page in the same styling that parent forums have? I know this is a common question.

I’ve been looking into this issue for a while and even found older forum post about it, but those were from 3-4 years ago and bbpress has very much changed since then. There seems to have been plugins in development to address this issue as well, but I couldn’t find anything on them.

Any advice on this issue would be greatly appreciated, At least to get me on my way!

Thanks in advance!

customize registration user experience

Published on August 24th, 2013 by stunna42

bbPress Version 2.3.2 & WP 3.6

Hello! Sorry for the newbie question 🙂 I’d like to customize the registration experience for my instance of bbpress. Specifically, I’d like to specify the content:

1. In addition to the username and password fields on the sign-up page
2. In the “you are now registered email” users get
3. In the forgot your password page
4. In the forgot your password email

Is this possible? If so, how? Thanks again!

Note: I know we can specify custom URI’s…but using the registration short code creates a page with the following content…I’d like to change that text etc. “Your username must be unique, and cannot be changed later. We use your email address to email you a secure password and verify your account.”

Shortcode for user role?

Published on August 24th, 2013 by janhoos

Hey guys!

I have an agenda plug-in where users can show they are attending a certain event. I’d like to display the user role (member, aspiring member) behind the name.

But I can’t seem to find the short code for a users role? Is there any? If not, is there a way to display them?

Intranet integration

Published on August 23rd, 2013 by bluesdetoi

I have a question regarding an issue I can’t seem to figure out.

I have bbpress installed on our company intranet, and have been trying to make sure that the company employees can post without having to register, but also without being anonymous. Our intranet is accessible from the company server only, and I was hoping that it could be possible for employees to post from their name, and not having to create usernames. Is this an option currently?

Show only topics to public visitors.

Published on August 23rd, 2013 by Anand

Hello All,

I am trying to hide all the replies for anonymous or public. I added the following code:


function custom_bbp_show_lead_topic( $show_lead ) {
$show_lead[] = 'true';
return $show_lead;
}

add_filter('bbp_show_lead_topic', 'custom_bbp_show_lead_topic' );

function remove_forum_replies_guest() {
	if ( !is_user_logged_in() ) {
		remove_action('bbp_before_has_replies_parse_args', 'bbp_replies') ;
	} 
}

add_filter('bbp_has_replies_query',  'remove_forum_replies_guest');

It removes all the replies not only for public (non-logged in visitors) but also from logged in users.

Any help will be appreciated.

Skip to toolbar