Search Results for 'buddypress'
-
AuthorSearch Results
-
March 11, 2014 at 6:32 pm #179620
In reply to: Plugin to make buddypress site Invite only
divydovy
ParticipantJust wasted $19 to find out that plugin only works on multisite with buddypress, not a single site with buddypress.
Ambiguous product description and lack of an easy refund mechanism makes me warn you off wpmudev.
March 11, 2014 at 5:45 pm #179618In reply to: How to add a few more members-directory pages?
Henry Wright
Moderator@landwire I see! That explains it.
Is that something that can be taken to core developers and asked if we can enhance the filter functionality
You could always ask? Trac is the best place to do that: https://buddypress.trac.wordpress.org/
March 11, 2014 at 2:25 pm #179612In reply to: BuddyPress e Bootstrap
stuffgrid
ParticipantPlease Support, help-me the right way to enqueue buddypress with bootstrap <3
March 11, 2014 at 11:23 am #179604In reply to: Layout problems with Genesis Themes
keithschmader
Participant@cspowers try the following
//* Remove the entry meta in the entry header (requires HTML5 theme support) remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );I too am working on getting rid of the wonky layout issues, it is taking some time. The genesis connect plugin for buddypress is misleading in that it has been recently updated, but is worthless for the latest version of the genesis framework with the latest version of buddypress.
Will keep you posted if I come across anything else as I work on this.
March 11, 2014 at 4:01 am #179597In reply to: [Resolved] Cannot Display Buddypress Pages
xxxTRISTAMxxx
ParticipantUpdate:
Problem #1 is for all pages: Members, Groups, Activate, RegisterAND I have added the Members, Groups, Activate, Register Pgs and assigned them to the proper area in the pages section of buddypress.
March 11, 2014 at 1:09 am #179589In reply to: Deleting Buddypress Data
BuddyBoss
ParticipantDid you follow the part titled “Advanced Optional Step: Removing the database tables”.
That is the key to your question. The settings are all stored in the database tables. BuddyPress does not have an option to purge the database settings upon deactivation. You have to manually delete the tables.
Be careful! You could screw up your whole site if you remove the wrong tables. Definitely back up your database before attempting any of that.
March 11, 2014 at 1:05 am #179587In reply to: How to stop spam registrations
BuddyBoss
ParticipantI have thought about this a lot as well. BuddyPress spam is SO obvious for a human to figure out. You can detect spammers with almost perfect accuracy in just a few seconds. They all do the same thing. They create an account, then post garbage links. If you have Groups enabled, they create groups full of links in the description. I don’t know of a plugin that will do this, but the best way to block BP spam I think would be to put users in moderation if they post links to groups or activity, just like the setting we have for blog post comments.
March 10, 2014 at 8:11 pm #179579danbp
ParticipantHi guys !
Most of the publishing stuff is regulated from within WordPress settings.
And allowing blog and forums activity comments is a setting of BuddyPress.If you don’t want your users writing notices (what’s new ?), the only thing that is published by buddyPress, you can remove the notice form from the template or add a conditionnal if/else for the allowed members…
@boblebad, FYI buddypress is not a forum software. The forum plugin is bbPress.
March 10, 2014 at 7:42 pm #179577In reply to: User can't edit profile page
sergeantdutch
ParticipantYeah, I’m suffering the exact same issue.
Wordpress 3.8.1, Buddypress 1.9.2At first I thought it was because of an update to my Simplepress plugin, but that doesn’t seem to be the issue.
I’d hazard a guess it appeared after the latest BP update.
March 10, 2014 at 4:58 pm #179573boblebad
ParticipantThat’s something i would like to know too.
I need to have free “members” that can’t interact with the forum and groups, it’s okay that they can read/view them, but not answer or create new topics – that’s only for paying members.
It is actually weird that this feature isn’t in BuddyPress out-of-the-box, most other forum software has it.
All the best
CarstenMarch 10, 2014 at 4:39 pm #179571In reply to: How to stop spam registrations
danbp
ParticipantMarch 10, 2014 at 3:18 pm #179565In reply to: How to add a few more members-directory pages?
landwire
ParticipantOk, will try that.
BTW: what is the difference between the following filters:
bp_legacy_theme_ajax_querystring and bp_ajax_querystring as per documentation here:
I guess I find the
To filter ajax:
bit odd. Maybe I should use that filter?
March 10, 2014 at 2:42 pm #179562In reply to: How to add a few more members-directory pages?
Henry Wright
ModeratorIf you have links like this
example.com/members/usernamethen root profiles are disabled. If you have thisexample.com/usernamethen root profiles are enabled.Try this:
function my_filter( $query = false, $object = false ) { if ( ! is_page( 'office' ) ) return $query; $users = get_users( 'role=YOUR-ROLE-TO-EXCLUDE' ); $exclude = implode( ',', $users ); if ( $object != 'members' ) return $query; $args = wp_parse_args( $query ); if ( ! empty( $args['user_id'] ) ) return $query; if ( !empty( $args['exclude'] ) ) $args['exclude'] = $args['exclude'] . ',' . $exclude; else $args['exclude'] = $exclude; $query = build_query( $args ); return $query; } add_filter( 'bp_ajax_querystring', 'my_filter', 20, 2 );Note: Change
YOUR-ROLE-TO-EXCLUDEto the role you want to exclude. i.e. AuthorAdapted from here:
Exclude Users from Members directory on a BuddyPress based social network
March 10, 2014 at 12:54 pm #179553In reply to: How to add a few more members-directory pages?
landwire
ParticipantHenry, would just like your thought on the following.
I went down a different route with the above, not sure if that is recommended though:I created a shortcode like so, basically putting the whole new office-index.php into it. Then just put the shortcode into a page called “office” and it looks great out of the box – all formatting etc intact!
See: http://2013d.landwire.net/office/
You can compare all three now. There still all live.
Do you think it’s ok to do it like that?
function lw_office_directory( $atts ) { do_action( 'bp_before_directory_members_page' ); ?> <div id="buddypress"> <?php do_action( 'bp_before_directory_members' ); ?> <?php do_action( 'bp_before_directory_members_content' ); ?> <div id="members-dir-search" class="dir-search" role="search"> <?php bp_directory_members_search_form(); ?> </div><!-- #members-dir-search --> <?php do_action( 'bp_before_directory_members_tabs' ); ?> <form action="" method="post" id="members-directory-form" class="dir-form"> <div class="item-list-tabs" role="navigation"> <ul> <li class="selected" id="members-all"><a href="<?php bp_members_directory_permalink(); ?>"><?php printf( __( 'All Members', 'buddypress' )); ?></a></li> <?php if ( is_user_logged_in() && bp_is_active( 'friends' ) && bp_get_total_friend_count( bp_loggedin_user_id() ) ) : ?> <li id="members-personal"><a href="<?php echo bp_loggedin_user_domain() . bp_get_friends_slug() . '/my-friends/'; ?>"><?php printf( __( 'My Friends <span>%s</span>', 'buddypress' ), bp_get_total_friend_count( bp_loggedin_user_id() ) ); ?></a></li> <?php endif; ?> <?php do_action( 'bp_members_directory_member_types' ); ?> </ul> </div><!-- .item-list-tabs --> <div class="item-list-tabs" id="subnav" role="navigation"> <ul> <?php do_action( 'bp_members_directory_member_sub_types' ); ?> <li id="members-order-select" class="last filter"> <label for="members-order-by"><?php _e( 'Order By:', 'buddypress' ); ?></label> <select id="members-order-by"> <option value="active"><?php _e( 'Last Active', 'buddypress' ); ?></option> <option value="newest"><?php _e( 'Newest Registered', 'buddypress' ); ?></option> <?php if ( bp_is_active( 'xprofile' ) ) : ?> <option value="alphabetical"><?php _e( 'Alphabetical', 'buddypress' ); ?></option> <?php endif; ?> <?php do_action( 'bp_members_directory_order_options' ); ?> </select> </li> </ul> </div> <div id="members-dir-list" class="members dir-list"> <?php bp_get_template_part( 'members/offices/offices-loop' ); ?> </div><!-- #members-dir-list --> <?php do_action( 'bp_directory_members_content' ); ?> <?php wp_nonce_field( 'directory_members', '_wpnonce-member-filter' ); ?> <?php do_action( 'bp_after_directory_members_content' ); ?> </form><!-- #members-directory-form --> <?php do_action( 'bp_after_directory_members' ); ?> </div><!-- #buddypress --> <?php do_action( 'bp_after_directory_members_page' ); } add_shortcode('lw_office_directory', 'lw_office_directory');March 10, 2014 at 12:08 pm #179550In reply to: How to add a few more members-directory pages?
Henry Wright
ModeratorI think some of the visual differences could be due to CSS. Fundamentally each of these are different. Take the offices-index template for example. If you view the source you’ll see the body classes:
page page-id-1100 page-template-default masthead-fixed full-width singular no-jsWhere as if you view the source of the members directory you should see body classes
directory members buddypress masthead-fixed full-width singular no-jsIf the theme you’re using makes use of the body class when styling
body.page { // styles ... }then that could be why it looks different?March 10, 2014 at 12:01 pm #179548In reply to: How to add a few more members-directory pages?
landwire
ParticipantThat works ok now. I basically used the page.php template and replaced the whole loop with the page-office-loop.php file contents and saved that as page-office-loop.php. Does still not look like the members page though.
Maybe take a look if you have a minute. One also shows up a search box while the other does not. Strange. I did NOT use <?php get_footer( ‘buddypress’ ); ?> or <?php get_header( ‘buddypress’ ); ?> as the page template already loads some header/footer.
Modified: http://2013d.landwire.net/offices-index/
Original – though I took members count out of tab: http://2013d.landwire.net/members/
SMarch 10, 2014 at 11:36 am #179546In reply to: How to add a few more members-directory pages?
Henry Wright
ModeratorYou’ll need to add your BuddyPress header and footer to the page-office-loop.php file. For example:
<?php get_header( 'buddypress' ); ?> <!-- bits and bobs here --> <?php get_footer( 'buddypress' ); ?>March 10, 2014 at 11:29 am #179545In reply to: How to add a few more members-directory pages?
landwire
ParticipantHmm, that works the same as the page template approach I made earlier.
The display is rather blank though, no footer/header etc. And I had a typo before in my code, so your approach highlighted that mistake!
Is there a way that I could just use a standard template and “inject” the buddypress members content there. Basically just like a copy and paste of the page-offices-loop.php into the wordpress text editor?
Sascha
March 10, 2014 at 10:55 am #179542In reply to: Activation email not been received
Fuzzielogix
ParticipantI am receiving mails from other sources i.e mail clients , gmail etc to the mail address, so still unsure whether it’s a wordpress/buddypress issue or server side issue ….
March 10, 2014 at 6:45 am #179535In reply to: Activation email not been received
@mercime
Participant@fuzzielogix Have you checked if registration works if BP is deactivated? If it still doesn’t work, then you need to resolve the issue with your hosting. It registration works with BP deactivated, then check out how to resolve the issue in the email section at https://codex.buddypress.org/legacy/faq/
March 10, 2014 at 6:38 am #179534@mercime
Participant@simple-man BP’s default style for the Member and Group widget avatars have been superseded by your theme’s style where it changed the avatar’s width to
autoin one area and in another area, changed it tomax-width: 100%. You can add the following to the stylesheet of your child theme.widget.buddypress ul.item-list img.avatar { width: 20px; }March 10, 2014 at 4:04 am #179533In reply to: Deleting Buddypress Data
thom7000
ParticipantHi Thanks for the response I have done this but when I re-install buddypress the old settings still show up how do i change to default everything??
March 10, 2014 at 3:40 am #179532In reply to: Deleting Buddypress Data
March 9, 2014 at 8:49 pm #179519In reply to: 404 on requesting membership to a group
BuddyBoss
ParticipantMarch 9, 2014 at 8:48 pm #179518In reply to: 404 on requesting membership to a group
BuddyBoss
ParticipantI would suggest checking out this BuddyPress ticket:
https://buddypress.trac.wordpress.org/ticket/5140That’s likely the cause. This bug has been documented.
-
AuthorSearch Results