BUG in Member Profile Modification file
Posted: May 14th, 2011, 3:32 pm
I found a BUG in the Member Profile Modification file (s2member/includes/profile.inc.php), at line 154. The "after" Hook for the "Display Name" row says "last_name" instead of "display_name":
but should be
I am trying to use this hook to hide the entire Display Name row, based on my tip here (viewtopic.php?f=4&t=6433).
- Code: Select all
do_action ("ws_plugin__s2member_during_profile_during_fields_after_last_name", get_defined_vars ());
but should be
- Code: Select all
do_action ("ws_plugin__s2member_during_profile_during_fields_after_display_name", get_defined_vars ());
I am trying to use this hook to hide the entire Display Name row, based on my tip here (viewtopic.php?f=4&t=6433).