Search Results for 'buddypress'
-
Search Results
-
Hi,
We’re having problems displaying the contents of shortcodes inside the tabs of our BuddyPress Custom Profile Menu plugin. This only happens in non-standard BP 1.7 themes, but works as expected in themes like “BuddyPress Default” that ships with BP.
Researching the issue some more, we found the following line in bp-core-theme-compatibility.php (line 525)
bp_remove_all_filters( 'the_content' );This is clearly the cause of the issue, as it removes, amongst others, the ‘do_shortcode’ filter function from ‘the_content’ filter (function added to filter in WordPress’ shortcodes.php, line 335). Why does BuddyPress remove all ‘the_content’ filters when in theme compatibility mode? Does this mean that shotcodes cannot be displayed in this mode?
Thanks in advance!
Hi All
I know that 1.7 is in theory compatible with all themes. My only question is how to add the BP membership signup/login to the home page of any theme. I notice it isn’t a widget (unless I missed something). In order to have this which we definitely need to have, Are we restricted to Buddypress compatible themes?
Thanks
Topic: Wierd issue with group forum
i running wordpress 3.4.2 with buddypress 1.7.1.
Under setting – buddypress – components
Group forum is uncheck – it wronte BuddyPress Forums are retired. Use bbPress.But in my buddypress group, when create a new group , it option are
1. Details
2. Settings
3. Forum
4. AvatarHow to remove number 3 option?
3. Forum – Group Forum page
The content :
Create a discussion forum to allow members of this group to communicate in a structured, bulletin-board style fashion.
Yes. I want this group to have a forum.when u tick yes, a forum tab appear in each single group.
Here my theme, groups -> create.php
<?php /* Group creation step 2: Group settings */ ?>
<?php if ( bp_is_group_creation_step( ‘group-settings’ ) ) : ?><?php do_action( ‘bp_before_group_settings_creation_step’ ); ?>
<?php if ( bp_is_active( ‘forums’ ) ) : ?>
<?php if ( bp_forums_is_installed_correctly() ) : ?><div class=”checkbox”>
<label><input type=”checkbox” name=”group-show-forum” id=”group-show-forum” value=”1″<?php checked( bp_get_new_group_enable_forum(), true, true ); ?> /> <?php _e( ‘Enable discussion forum’, ‘buddypress’ ); ?></label>
</div><?php else : ?>
<?php if ( is_super_admin() ) : ?><div class=”checkbox”>
<label><input type=”checkbox” disabled=”disabled” name=”disabled” id=”disabled” value=”0″ /> <?php printf( __( ‘Attention Site Admin: Group forums require the correct setup and configuration of a bbPress installation.’, ‘buddypress’ ), bp_get_root_domain() . ‘/wp-admin/admin.php?page=bb-forums-setup’ ); ?></label>
</div><?php endif; ?>
<?php endif; ?>
<?php endif; ?>Hi all,
I added a bp-custom.php file inside plugins folder to be able to fix the problem with the friends counter after the deletion of a member (please see here: http://buddypress.trac.wordpress.org/ticket/2341)
After adding the bp-custom.php file inside the plugins folder (including the code which is described in the link above) I couldn’t load my site…
I removed the bp-custom.php file and now it is ok but without fixing the counter.
Any idea?
Regards
Topic: Associating Member Profiles
I’m no stranger to WordPress but Buddypress is somewhat new territory for me. At this time, I’m developing a community site. Below I’ve listed the versions
wp v3.5.1
bp 1.7.1 (theme compatibility)
theme framework is Genesis v1.9.2
dev url: http://creativeconundrum.com/kristen2My client is “emotionally prepared” to have to set up individual profiles separately but she would like to have the ability to associate profiles of family members within a member’s profile. BP-Xprofiles extends the fields that I can create but my puzzle is how to actually create an extended profile field that will permit members to select other members who are family members.
I found this forum link that looks as though it would provide a method of producing this list for selection:
http://buddypress.org/support/topic/using-bp-member-profile-data-outside-members-section/
As was noted in the thread that led me to the above link, there is very little documentation available on this brand new feature.
I’ve written many sites that leverage custom post types and I can imagine that this would allow a user to enter their family member profile links. Presenting this additional content to the single member profile output, would work but it isn’t as elegant as I was hoping for.
Has anyone got any hints or ideas on the best way to approach this?
Thanks, in advance, for your thoughts.
Hey all,
i wanna optimize my site so i need to know how to disable buddypress js/css in home, CPT/pages/posts, archive and taxonomy.php pages.
i read http://buddypress.org/support/topic/converting-theme-how-to-load-buddypress-stuff-on-buddypress-pages-only/ but don’t know where to use it??