1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <?php
if ( is_user_logged_in() ) {
// get the role of the user
$user = wp_get_current_user();
if (in_array('um_visiteurs', $user->roles ) ) {
$template = 'page-tpl_my_profile_visiteur';
}
else if (in_array('um_premium', $user->roles ) ) {
$template = 'page-tpl_my_profile_premium';
}
else if (in_array('um_gold', $user->roles ) ) {
$template = 'page-tpl_my_profile_gold';
}
else {
$template = 'page-tpl_my_profile';
}
$account_manage = '<a href="' . esc_url( classifieds_get_permalink_by_tpl( $template ) ) . '" class="login-action">' . classifieds_get_option( 'my_profile_looks' ) . '</a>';
$submit_ad = add_query_arg( array( $classifieds_slugs['subpage'] => 'submit_ad' ), classifieds_get_permalink_by_tpl( $template ) ) ;
$modal = '';
} else {
$account_manage = '<a href="#login" data-toggle="modal" class="login-action">' . classifieds_get_option( 'login_looks' ) . '</a>';
$submit_ad = '#register';
} |