Statistics: Posted by Cristián Lávaque — June 16th, 2011, 12:21 am
add_action('ws_plugin__s2member_during_profile_during_fields_before_username','ideal_hide_start',10);
add_action('ws_plugin__s2member_during_profile_during_fields_after_username','ideal_hide_end',10);
add_action('ws_plugin__s2member_during_profile_during_fields_before_display_name','ideal_hide_start',5);
add_action('ws_plugin__s2member_during_profile_during_fields_after_display_name','ideal_hide_end',5);
function ideal_hide_start ( $vars = array() ) {
echo "<!-- \n";
}
function ideal_hide_end ( $vars = array() ) {
echo " --> \n";
}
// hide fields (the entire <tr>)
jQuery('#ws-plugin--s2member-profile-display-name').parent().parent().parent().hide(); // Display-Name field
jQuery('#ws-plugin--s2member-profile-login').parent().parent().parent().hide(); // Username field
Statistics: Posted by toddz88 — June 16th, 2011, 12:10 am
Statistics: Posted by toddz88 — June 15th, 2011, 4:23 pm