1

enter image description here

Hello

Is there a way to disable editing the information from the fields displayed in the image?

I tried looking into template hooks but didnt find anything useful yet.

FYI: The information has to be displayed but not editable

Akash Mahale
  • 43
  • 10

1 Answers1

1

Example for disabling email go to design/backend/templates/views/profiles/components/profiles_account.tpl :

<div class="control-group">
    <label for="email" class="control-label cm-required cm-email">{__("email")}:</label>
    <div class="controls">
        <input type="text" id="email" name="user_data[email]" class="input-large" size="32" maxlength="128" value="{$user_data.email}" disabled/>
    </div>
</div>

enter image description here

sreechith srk
  • 146
  • 12