- It’s more convenient for users.
- It’s more secure.
- It guarantees that you’ll receive the message.
- Customers can contact you at all hours.
- It helps you get more information.
- You can provide better service.
- You can customize it to suit your site’s particular needs.
- It makes data easier to analyze.
- It helps your customer relationship management.
- It’s more mobile-friendly.
- It can collect donations.
- It can be shown to site browsers whenever you want.
- It’s a better “call to action.”
Here is how to do it :
1. Go to your themes folder, and open open contact.form.tpl on your favorite text editor.
2. Dont forget to backup the file first before you edit it.
3. After backup, find the following codes
<select id="id_contact" class="form-control" name="id_contact">4. change it to, for example <input type="hidden" name="id_contact" value="1">
<option value="0">{l s='-- Choose --'}</option>
{foreach from=$contacts item=contact}
<option value="{$contact.id_contact|intval}" {if isset($smarty.request.id_contact) && $smarty.request.id_contact == $contact.id_contact}selected="selected"{/if}>{$contact.name|escape:'html':'UTF-8'}</option>
{/foreach}
</select>
Please notice the value must be a valid contact id