Tagged: Buddypress Member Types Pro, code, member types
Hi Herve,
Thank you for posting.I will post the code on the Member types pro documentation site and link here later in the day.
Thank you
BrajeshHi Herve,
I am sorry for the delay. Please provide me till tomorrow. Got caught in another plugin release and could not work on it.Thank you
BrajeshJust wanted to post an update. It is still in my list. It needs a little more than I expected(A way to trigger the all required fields complete action only once). I will be posting a proper solution and most probably a small plugin in next couple of days.
Thank you
BrajeshGood evening Brajesh
If there are few interested members, I do not know if it is necessary to make another plugin!
In this case I would rather just need a function because my need is rather simple.
I want to automatically change member type / role when the new member has a profile photo AND enter all required fields.
[Otherwise, he does not have access to buddypress pages (and a wordpress page) but to all other pages, articles …]For now I use your plugin and the following code to display a message :
`
add_filter( ‘bp_force_profile_photo_skip’, ‘buddydev_skip_redirect_on_non_bp_pages’ );
function buddydev_skip_redirect_on_non_bp_pages( $skip ) {/* voir plus tard si beson d’autoriser les membre0 a ne pas avoir de photos */
if ( !is_buddypress() ) { // OR !is_page(‘tableau-de-bord’) NE FONCTIONNE PAS
$skip = true;
}
return $skip;
}add_action(‘bp_before_member_body’, ‘my_bp_before_member_body’, 10, 0);
function my_bp_before_member_body()
{
if (is_user_logged_in())
{
$user_id = wp_get_current_user()->ID;if($user_id == bp_displayed_user_id())
{
global $wpdb;
$bp_prefix = bp_core_get_table_prefix();
$xprofile_fields = $wpdb->get_results(“SELECT xf.name field_name, xg.name group_name FROM {$bp_prefix}bp_xprofile_fields xf”
. ” join {$bp_prefix}bp_xprofile_groups xg on xg.id = xf.group_id”
. ” WHERE parent_id = 0 AND is_required = 1 AND xf.id NOT IN (SELECT field_id FROM {$bp_prefix}bp_xprofile_data WHERE user_id = {$user_id} ANDvalue
IS NOT NULL ANDvalue
!= ”)”);
$xprofile_fields_count = count($xprofile_fields);
/*$picture = get_user_meta($user_id, ‘picture’);if (empty($picture)) {
$xprofile_fields_count++;
}*/if ($xprofile_fields_count > 0 ) { //|| empty($picture)
$message = ‘[su_note note_color=”#ff6668″ radius=”5″]’ .'(‘ . $xprofile_fields_count . __(‘ donnée(s) manquante(s)’, ‘bp-force-profile’) . __(‘). Merci de compléter votre profil pour devenir membre et accéder à toutes les fonctionnalités du site.’, ‘bp-force-profile’) .'<br />Sauvegardez avant de passer à un autre onglet.’;
$message .= ‘<ul”>’;
/*if (empty($picture)) {
$message .= ‘<li>Photo de profil</li>’; Texte de la note
}*/
if ($xprofile_fields_count > 0) {
foreach ($xprofile_fields as $field) {
$message .= ‘<li>’ . $field->field_name . ‘ (Onglet: ‘ .$field->group_name . ‘) </li>’;
}
}
$message .= ‘</ul>’;
echo $message . ‘[/su_note]’;
}
}
}
}
`HI Herve,
My apologies for the delayed reply.Here is the code
https://gist.github.com/sbrajesh/238153f70f770f957fd1c4b2ba60be77you should put it in bp-custom.php
Please make sure to update the set_member_type() method with the actual member type.
I haven’t tested it but it should work. I hope you can extend further in any way you want.
Regards
BrajeshHello Brajesh,
Wow 🙂 , I did not expect such a complete program!!
Some questions: 1/ if there will be no conflict using the BP force profile plugin at the same time? It's a pretty different programming. To avoid breaking the code, I want to know where to put my codes 2/ where put in variable of the type of member (not to forget it and ... no problem): $member_type_unique_name='membre0'; // ??????? OK ???????? class BuddyDev_Profile_Field_Completion_Helper { ... public function set_custom_member_type( $user_id ) { $append = false; // set it to true if you just want to append this member type. bp_set_member_type( $user_id, $member_type_unique_name, $append ); } ... 3/ when I switch from member type, I have to switch also with the armember plugin: public function check_on_update( $user_id ) { if ( $this->has_incomplete_profile( $user_id ) && $this->has_required_field_data( $user_id ) && $this->has_uploaded_avatar( $user_id ) ) { $this->mark_complete_profile( $user_id ); do_action( 'buddydev_bp_user_profile_completed', $user_id ); do_action( 'arm_apply_plan_to_member', 2, $user_id); // ??????? OK ???????? } } 4/ where put my message for mandatory fields not entered: public function has_required_field_data( $user_id ) { ... // not all fields are set. if ( $count != count( $required_fields ) ) { // unset flag. delete_user_meta( $user_id, '_has_required_field_data' ); ***********// ??????? OK ???????? $message = '[su_shadow style="horizontal"][su_note note_color="#ff6668" radius="5"]' .'(' . $xprofile_fields_count . __(' donnée(s) manquante(s)', 'bp-force-profile') . __('). Merci de compléter votre profil pour devenir membre et accéder à toutes les fonctionnalités du site.', 'bp-force-profile') .'<br />Sauvegardez avant de passer à un autre onglet.'; $message .= '<ul">'; /*if (empty($picture)) { $message .= '<li>Photo de profil</li>'; Texte de la note }*/ if ($xprofile_fields_count > 0) { foreach ($xprofile_fields as $field) { $message .= '<li>' . $field->field_name . ' (Onglet: ' .$field->group_name . ') </li>'; } } $message .= '</ul>'; echo $message . '[/su_note][/su_shadow]'; ***********
Regards
- This reply was modified 6 years, 11 months ago by Brajesh Singh. Reason: updated to use backtick
Oups
Sorry, I think the code on the forum is not working well.
I copied it in https://gist.github.com/sbrajesh/238153f70f770f957fd1c4b2ba60be77
You must be logged in to reply to this topic.