Delete fields in my account
-
Hi,
I would like to remove several required fields from the my account page.
I followed this topic to find the .php file to modify: https://www.ads-software.com/support/topic/add-custom-item-on-my-account-menu/
So I deleted :`<div class=”form-group row”>
<label for=”rtcl-first-name”
class=”col-sm-3 control-label”><?php esc_html_e(‘First Name’, ‘classified-listing’); ?></label>
<div class=”col-sm-9″>
<input type=”text” name=”first_name” id=”rtcl-first-name” value=”<?php echo esc_attr($user->first_name); ?>”
class=”form-control”/>
</div>
</div><div class=”form-group row”>
<label for=”rtcl-last-name”
class=”col-sm-3 control-label”><?php esc_html_e(‘Last Name’, ‘classified-listing’); ?></label>
<div class=”col-sm-9″>
<input type=”text” name=”last_name” id=”rtcl-last-name” value=”<?php echo esc_attr($user->last_name); ?>”
class=”form-control”/>
</div>
</div>`And save the file, but no changes.
What is missing?
- The topic ‘Delete fields in my account’ is closed to new replies.