• Resolved comunicacionescola

    (@comunicacionescola)


    hi,

    I am using Divi Theme + WooCommerce and I’d like to show the Member Role in the profile page of a customer. I have 3 different roles linked with different discounts (with YITH WOOCOMMERCE ROLE BASED PRICES plugin).

    I’d be perfect if I can just show a text or better an image dependind on the role. ?Is it posible?

Viewing 1 replies (of 1 total)
  • Plugin Author Caseproof

    (@caseproof)

    Hi @comunicacionescola

    I’m not sure how to display it on the WooCommerce profile page, but you can use this snippet as a starting point:

    global $wp_roles;
       if( is_user_logged_in() ) {
         $user = wp_get_current_user();
         $roles = ( array ) $user->roles;
    	echo '<ul>';
    	foreach( $roles as $role ){
              echo '<li>' . $wp_roles->roles[ $role ]['name'] . '</li>';
            }
    	echo '</ul>';
    }

    Best

Viewing 1 replies (of 1 total)
  • The topic ‘Show Member Role on customer profile’ is closed to new replies.