Skip to:
Content
Pages
Categories
Search
Top
Bottom

A function to bypass role caps participant do not view private forum

Published on September 12th, 2013 by FreeWPress

I all, is possible to have a function to bypass bbp_get_caps_for_role with one custom?

I want to get false this two option for participant:

// Forum caps
‘read_private_forums’ => true,

// Topic tag caps
‘assign_topic_tags’ => true,

In this moment i have update file capabilities.php but when bbpress have upgrade to new version i sure lost this modify…

P.s. Why this options aren’t present in administration forum panel?

How to do? Thanks….

Merge Blog Page with Flowing Topic Page

Published on September 12th, 2013 by RitaNow

How do I put my flowing list of forum topics “?post_type=forum” on my Blog page? The blog page has all the cool widgets, but my site is focused on the forum view so I would rather have the widgets on my forum page.

Visibility issue

Published on September 12th, 2013 by G3ronim0

Hi, i have a fresh install of WP3.6 and BP2.4

When i create a category or forum and add visibity to hidden or private, just after saving, the input change to public !

Don’t understand this issue.

Thanks for help.

BBpress default template rendered with line breaks

Published on September 12th, 2013 by ManuZorch

Hi
I have faced an issue that maybe some people have encountered and for which I did not find much info on the net.

Basically the problem was that the bbpress default template that I embedded in my WP template was rendered with supplementary line breaks (<br> and <p> tags). Just as if the wpautop function was reapplied on the forum content included in the template.

I noticed that the problem was existing on Linux if the template files had an Unix EOL : LF
And also existing on Windows (using WAMP) if those same files had a Windows EOL : CR+LF
I found a workaround by making the template files have a Mac End Of Line with : CR

But I am not sure this is a clean solution
Maybe there is something far more simple that I do not know

Thanks

I am using the latest 2.4 bbpress version

Profile, group, registration link?

Published on September 11th, 2013 by ladyramses

Hiya!

I am wondering if we can connect registration to the profile page and have a photo permanently show on the profile page.

I would like people registering to enter their birthday then based on that I want them placed into their zodiac group and put a photo on their profile page.

is this possible?

bbPress Single Forum

Published on September 11th, 2013 by RitaNow

I want to build a page that is a single forum using bbPress. When a topic is created it will stay in that Main Forum. A drop down displaying other Forums is available for that topic to be also in. The other forums are on the same site. The forums will be on the menu bar so the user can choose which forum to visit.

When a member is viewing a specific forum, a new topic can be created which will automatically be both in that forum and the Main forum.

How do I create this?

Is all the "loop" files necessary?

Published on September 11th, 2013 by CC-Cailin

I am integrating bbpress files into my own wordpress theme. But, I don’t get why there is so many loop files?

“content-archive-forum.php” links to “loop-forums.php”, and inside that, it links to “single-forum.php”.
Why on earth is there one loop linked to another, and then another, and then another? It sees confusing to me…

Can’t I just leave out files like “loop-forums.php” and add that code directly in “content-archive-forum.php and do the same with the other files? Or is it necessary to keep them broken up?

How to add custom fields to loop-single-reply.php? [example inside]

Published on September 11th, 2013 by Tenebral

i want to add some custom fields inside <div class="bbp-reply-author"> </div>.

I can do this inside user-profile.php using this code:

<div>
<?php if ( bbp_get_displayed_user_field( 'twitter' ) ) : ?>
<a class="tooltip" href="http://twitter.com/<?php bbp_displayed_user_field( 'twitter' ); ?>" title="<?php bbp_displayed_user_field( 'display_name' ); ?><?php _e( '  on Twitter', 'todo' ); ?>"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/socialicons/twitter.png" alt="" /></a>
<?php endif ?>	
<?php if ( bbp_get_displayed_user_field( 'facebook' ) ) : ?>
<a class="tooltip" href="<?php bbp_displayed_user_field( 'facebook' ); ?>" title="<?php bbp_displayed_user_field( 'display_name' ); ?><?php _e( '  on Facebook', 'todo' ); ?>"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/socialicons/facebook.png" alt="" /></a>
<?php endif ?>
<?php if ( bbp_get_displayed_user_field( 'google' ) ) : ?>
<a class="tooltip" href="<?php bbp_displayed_user_field( 'google' ); ?>" title="<?php bbp_displayed_user_field( 'display_name' ); ?><?php _e( '  on Google+', 'todo' ); ?>"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/socialicons/google_plus.png" alt="" /></a>
<?php endif ?>	
<?php if ( bbp_get_displayed_user_field( 'linkedin' ) ) : ?>
<a class="tooltip" href="<?php bbp_displayed_user_field( 'linkedin' ); ?>" title="<?php bbp_displayed_user_field( 'display_name' ); ?><?php _e( '  on Linkedin', 'todo' ); ?>"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/socialicons/linkedin.png" alt="" /></a>
<?php endif ?>				
<?php if ( bbp_get_displayed_user_field( 'flickr' ) ) : ?>
<a class="tooltip" href="<?php bbp_displayed_user_field( 'flickr' ); ?>" title="<?php bbp_displayed_user_field( 'display_name' ); ?><?php _e( '  on Flickr', 'todo' ); ?>"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/socialicons/flickr.png" alt="" /></a>
<?php endif ?>	
<?php if ( bbp_get_displayed_user_field( 'youtube' ) ) : ?>
<a class="tooltip" href="<?php bbp_displayed_user_field( 'youtube' ); ?>" title="<?php bbp_displayed_user_field( 'display_name' ); ?><?php _e( '  on YouTube', 'todo' ); ?>"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/socialicons/youtube.png" alt="" /></a>
<?php endif ?>
<?php if ( bbp_get_displayed_user_field( 'pinterest' ) ) : ?>
<a class="tooltip" href="<?php bbp_displayed_user_field( 'pinterest' ); ?>" title="<?php bbp_displayed_user_field( 'display_name' ); ?><?php _e( '  on Pinterest', 'todo' ); ?>"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/socialicons/pinterest.png" alt="" /></a>
<?php endif ?>
<?php if ( bbp_get_displayed_user_field( 'user_url' ) ) : ?>
<a class="tooltip" href="<?php bbp_displayed_user_field( 'user_url' ); ?>" title="<?php bbp_displayed_user_field( 'display_name' ); ?><?php _e( " 's site", 'todo' ); ?>"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/socialicons/site.png" alt="" /></a>
<?php endif ?>
</div>

But for some reason this didn’t work at loop-single-reply.php, there’s something i’m missing? ty

Can't edit their own topic post, what the?

Published on September 11th, 2013 by Mistweaver Po

I mean, it’s not logical to let users not be able to edit their very first post in their own topic?

For example if a member run a topic where he continues to add links or something else.

How can I solve this issue?

Behavior problem with Title Tags

Published on September 11th, 2013 by David Donnelly(Dapadoo)

I ran a search and didn’t find an answer to this. If there is one please point me to the right post.

Behavior problem with Title Tags

Site is multi-site 3.6, buddy press 1.81, bbpress 2.4. All other themes and plugis current. Problem on the main site only. Sub-domains not effected.

I found the title tags aren’t showing up correctly. On all pages other then BP pages and home page only the site name shows up as title in the browser. I can see that the page name/site Page | site name is trying to show but loops back to just the site name without the page or pipe.

I change the theme to 2012 and I still had the same problem.

I’ve tested in Chrome, Firefox and IE all behave the same.

I cleared, cache, temp internet history and file throughout the process of finding what’s wrong.

I deactivated all plugins and Title tags returned to normal tag behavior. I activated the plugins 1 by one and discovered that BBPress is causing the problem with the title tags. I deactivate all plugins again and activated only bbpress and sure enough it’s the problem. Right now I have BBPress deactivated.

Please help me through this issue.

Skip to toolbar