Search Results for 'buddypress'
-
AuthorSearch Results
-
December 13, 2014 at 10:18 am #230585
In reply to: How to switch user types in registration
danbp
Participantgive this a try.
BuddyPress User Account Type Lite, an outdated plugin who existed as PRO version, is now avaible for free. And works with 4.0.1 and BP 2.1.1
User Manual:
http://wpbpshop.com/wpbpshop-manuals/buddypress-user-account-type-pro.htmlThe code was uploaded 2 mounth ago on github.
https://github.com/RimonHabib/BuddyPress-User-Account-TypeIf you use php 5.4, you may see some warnings, but easy to repair.
December 12, 2014 at 10:51 pm #230545In reply to: Custom Login Redirect
bp-help
Participant@ad4m_wordpress
Not really sure what your trying to accomplish but you need to understand the dynamic nature when a user logs in and is redirected to their profile is in PHP language and there is no full html equivalent that could pull that info from the database to take that user to their profile.
I am certain you will have to use PHP to make this happen. If you copy and pasted the snippet in the link I supplied into bp-custom.php it shouldn’t take a few minutes and is very simple.December 12, 2014 at 9:41 pm #230541In reply to: Custom Login Redirect
ad4m_wordpress
ParticipantI found this post https://buddypress.org/support/topic/create-a-link-or-redirect/
And the question answered by @henrywright is what I am going for only I need the dynamic value to represent the username so anyone who logs in will be directed to their own profile wall.
This link – http://milemarker20.com/members/bp_loggedin_user_domain()/ did not work.
Admittedly I am not a programmer, I know a decent amount of html but not enough to really understand what is happening, I’m just trying to avoid paying $50 an hour to a programmer who will take 30 seconds to do this for me.
December 12, 2014 at 8:25 pm #230536In reply to: Groups and Forums
Hugo Ashmore
Participant@ad4m_wordpress Please check the BP Codex documentation you’ll find much of the information you seek there.
December 12, 2014 at 8:20 pm #230535In reply to: [Resolved] Colours of buttons make them unreadable.
danbp
ParticipantTry this
#buddypress .comment-reply-link, #buddypress a.button, #buddypress button, #buddypress div.generic-button a, #buddypress input[type=button], #buddypress input[type=reset], #buddypress input[type=submit], #buddypress ul.button-nav li a, a.bp-title-button { background-color: #ccc; color: #fff; font-size: 1rem; }December 12, 2014 at 1:50 pm #230514Sparkey
ParticipantI have now deactivated ALL plugins except Buddypress BBPress and Askimet.
Reran the repair tools for buddypress and bbpress.
Deleted the Groups page holder and emptied the trash.
Still forums redirect to nonsense permalinks and 404.
December 12, 2014 at 9:46 am #230506In reply to: [Resolved] CSS help please
@mercime
ParticipantDecember 12, 2014 at 9:45 am #230504In reply to: [Resolved] Colours of buttons make them unreadable.
@mercime
Participant@laura09 try adding the following to your theme’s stylesheet
#buddypress .comment-reply-link, #buddypress a.button, #buddypress button, #buddypress div.generic-button a, #buddypress input[type=button], #buddypress input[type=reset], #buddypress input[type=submit], #buddypress ul.button-nav li a, a.bp-title-button { color: #000; font-size: 1rem; }if it doesn’t work, please provide a throw-away username and password so we could log in.
December 12, 2014 at 2:07 am #230496In reply to: Adding a second registration form
Henry Wright
ModeratorDecember 12, 2014 at 2:01 am #230495In reply to: [Resolved] Manage Signups permissions error
jstallard
ParticipantThanks Shane – Buddypress Tools was under Tools as you said, on the dashboard of my main blog. I checked all the boxes and ran it but unfortunately it doesn’t fix the permissions problem 🙁
December 12, 2014 at 12:12 am #230492In reply to: [Resolved] Manage Signups permissions error
shanebp
ModeratorBP Repair Tools in wp-admin: Tools > BuddyPress
Not sure where it will show up in your multisite, main screen or subsite?December 12, 2014 at 12:04 am #230491In reply to: [Resolved] Manage Signups permissions error
jstallard
ParticipantThanks for your reply.
My main blog’s permalinks are set to Post Name.
The BP component pages exist.
I think r.php is part of the Facebook plugin. I’ve deleted it – wasn’t working anyway.
Can’t find the BP repair tool anywhere. Is it part of the Buddypress plugin, or an add-on?
December 11, 2014 at 11:16 pm #230489In reply to: Default to "view" instead of "edit" profile
shanebp
ModeratorDecember 11, 2014 at 11:12 pm #230487In reply to: Default to "view" instead of "edit" profile
shanebp
ModeratorThat area is controlled by WordPress, not BuddyPress
Try this in bp-custom.php or your theme/functions.php
https://gist.github.com/shanebp/91acc541776cc083e3a5December 11, 2014 at 8:37 pm #230481In reply to: [Resolved] Membermouse
zorro1965
ParticipantI found the solution Membermouse does work with Buddypress using their signup form only. But by using an additional field for registration [MM_Form_Field name=’username’]
December 11, 2014 at 4:44 pm #230465In reply to: [Resolved] Assigning New Subnav Items
shanebp
ModeratorTry:
function kisses_posts() { add_action( 'bp_template_content', 'kisses_screen' ); bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) ); } function kisses_screen() { locate_template( array( 'buddypress/members/single/kisses.php' ), true ); }Or
function kisses_screen() { echo ' put the code from kisses.php here'; }December 11, 2014 at 1:02 am #230381In reply to: Disabling Comments in BuddyPress
Henry Wright
ModeratorCheck out this article: https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/
December 10, 2014 at 9:13 pm #230379shanebp
ModeratorRead this for a better approach to your issue: Filtering by Xprofile fields
Another approach: bp_user_query
December 10, 2014 at 2:15 pm #230371In reply to: [Resolved] Matching status updates with categories
danbp
ParticipantForgot to mention that this can be made with CPT as soon as BP 2.2 is out.
December 10, 2014 at 1:32 pm #230370In reply to: [Resolved] Matching status updates with categories
danbp
ParticipantIf you’re comfortable with coding, you can try what described here. Be aware that it’s an old topic with possible changes to work with BP 2.1.1
https://buddypress.org/support/topic/adding-a-second-element-for-posting-with-an-activity/
December 10, 2014 at 7:24 am #230361In reply to: Need to know the nav-sub pages directory.
ahd904
ParticipantDear @shanebp,
The answer from the support team at appbuddy was not really helpful.
Their answer was ‘Appbuddy should just override bp files in the same hierarchy, Thanks.’ … hahashane i was hoping that you might be able to tell me where i would find the codes for the sub-nav-menus so i can check the appbuddy buddypress files and whether they are correct or not on my own ?
Thank you in advance.
December 9, 2014 at 11:33 pm #230355In reply to: BuddyPress group avatar spillage across networks
marvc
ParticipantI have the following on another network:
<?php /* Plugin Name: BP Multi Network Plugin URI: http://wpmututorials.com/news/new-features/multiple-buddypress-social-networks/ Description: Segregate your BP networks in a multi-network WP install (must be installed in the mu-plugins folder) Version: 0.1.1 Author: Ron Rennick Author URI: http://ronandandrea.com/ */ /* Copyright: (C) 2011 Ron Rennick, All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ function ra_bp_multinetwork_filter( $prefix ) { global $wpdb; if( $wpdb->siteid > 1 && $prefix == $wpdb->base_prefix ) { $current_site = get_current_site(); return $wpdb->get_blog_prefix( $current_site->blog_id ); } return $prefix; } add_filter( ‘bp_core_get_table_prefix’, ‘ra_bp_multinetwork_filter’ ); function ra_bp_multinetwork_meta_key_filter( $key ) { global $wpdb; static $user_meta_keys = array( ‘last_activity’ => false, ‘bp_new_mention_count’ => false, ‘bp_favorite_activities’ => false, ‘bp_latest_update’ => false, ‘total_friend_count’ => false, ‘total_group_count’ => false, ‘notification_groups_group_updated’ => false, ‘notification_groups_membership_request’ => false, ‘notification_membership_request_completed’ => false, ‘notification_groups_admin_promotion’ => false, ‘notification_groups_invite’ => false, ‘notification_messages_new_message’ => false, ‘notification_messages_new_notice’ => false, ‘closed_notices’ => false, ‘profile_last_updated’ => false, ‘notification_activity_new_mention’ => false, ‘notification_activity_new_reply’ => false ); if( $wpdb->siteid < 2 || !isset( $user_meta_keys[$key] ) ) return $key; if( !$user_meta_keys[$key] ) { $current_site = get_current_site(); $user_meta_keys[$key] = $wpdb->get_blog_prefix( $current_site->blog_id ) . $key; } return $user_meta_keys[$key]; } add_filter( ‘bp_get_user_meta_key’, ‘ra_bp_multinetwork_meta_key_filter’ );December 9, 2014 at 11:32 pm #230354In reply to: BuddyPress group avatar spillage across networks
marvc
ParticipantIn terms of the BP Multi-Network plugin I have the following on one network:
<?php /* Plugin Name: BP Multi Network Plugin URI: http://wpmututorials.com/news/new-features/multiple-buddypress-social-networks/ Description: Segregate your BP networks in a multi-network WP install (must be installed in the mu-plugins folder) Version: 0.1 Author: Ron Rennick Author URI: http://ronandandrea.com/ */ /* Copyright: (C) 2011 Ron Rennick, All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ function ra_bp_multinetwork_filter( $prefix ) { global $wpdb; if( $wpdb->siteid > 1 && $prefix == $wpdb->base_prefix ) { $current_site = get_current_site(); return $wpdb->get_blog_prefix( $current_site->blog_id ); } return $prefix; } add_filter( ‘bp_core_get_table_prefix’, ‘ra_bp_multinetwork_filter’ ); function ra_bp_multinetwork_meta_key_filter( $key ) { global $wpdb; static $user_meta_keys = array( ‘bp_new_mention_count’ => false, ‘bp_favorite_activities’ => false, ‘bp_latest_update’ => false, ‘total_friend_count’ => false, ‘total_group_count’ => false, ‘notification_groups_group_updated’ => false, ‘notification_groups_membership_request’ => false, ‘notification_membership_request_completed’ => false, ‘notification_groups_admin_promotion’ => false, ‘notification_groups_invite’ => false, ‘notification_messages_new_message’ => false, ‘notification_messages_new_notice’ => false, ‘closed_notices’ => false, ‘profile_last_updated’ => false, ‘notification_activity_new_mention’ => false, ‘notification_activity_new_reply’ => false ); if( $wpdb->siteid < 2 || !isset( $user_meta_keys[$key] ) ) return $key; if( !$user_meta_keys[$key] ) { $current_site = get_current_site(); $user_meta_keys[$key] = $wpdb->get_blog_prefix( $current_site->blog_id ) . $key; } return $user_meta_keys[$key]; } add_filter( ‘bp_get_user_meta_key’, ‘ra_bp_multinetwork_meta_key_filter’ );December 9, 2014 at 8:28 pm #230345In reply to: Buddypress emails not working
naginenis
ParticipantI tried that plugin , still no luck. Any activity post or group invitation or mentions etc..nothing related to buddypress is sending emails to users. Site emails are working as mentioned just the buddypress emails are not.
December 9, 2014 at 8:02 pm #230344In reply to: Profile Field Must be Unique
danbp
ParticipantBP use only Name (aka nickname) and the WP registration process.
Unique name possible ? Not really
https://buddypress.trac.wordpress.org/ticket/2036https://codex.wordpress.org/Customizing_the_Registration_Form
-
AuthorSearch Results