Cvp:İletişim formu sorunu Lütfen yardım
Temanız/contact-form.tpl dosyasında
Bu kodu bulunuz
{else}
<p class="bold">{l s='For questions about an order or for information about our products'}.</p>
{include file=$tpl_dir./errors.tpl}
<form action="{$request_uri|escape:'htmlall':'UTF-8'}" method="post" class="std"><input type="hidden" name="phpMyAdmin" value="98526d0b8b5f8f81f62e93bf38e4e836" />
<fieldset><input type="hidden" name="phpMyAdmin" value="98526d0b8b5f8f81f62e93bf38e4e836" />
<h3>{l s='Send a message'}</h3>
<p class="select">
<label for="id_contact">{l s='Subject'}</label>
<select id="id_contact" name="id_contact" onchange="showElemFromSelect('id_contact', 'desc_contact')">
<option value="0">{l s='-- Choose --'}</option>
{foreach from=$contacts item=contact}
<option value="{$contact.id_contact|intval}" {if isset($smarty.post.id_contact) && $smarty.post.id_contact == $contact.id_contact}selected="selected"{/if}>{$contact.name|escape:'htmlall':'UTF-8'}</option>
{/foreach}
</select>
</p>
Aşağıdaki kod ile değiştiriniz..
{else}
<p class="bold">{l s='For questions about an order or for information about our products'}.</p>
{include file=$tpl_dir./errors.tpl}
<form action="{$request_uri|escape:'htmlall':'UTF-8'}" method="post" class="std"><input type="hidden" name="phpMyAdmin" value="98526d0b8b5f8f81f62e93bf38e4e836" />
<fieldset><input type="hidden" name="phpMyAdmin" value="98526d0b8b5f8f81f62e93bf38e4e836" />
<h3>{l s='Send a message'}</h3>
<p class="select">
Müşteri Hizmetleri
{foreach from=$contacts item=contact}
<option value="{$contact.id_contact|intval}" {if isset($smarty.post.id_contact) && $smarty.post.id_contact == $contact.id_contact}selected="selected"{/if}>{$contact.name|escape:'htmlall':'UTF-8'}</option>
{/foreach}
</select>
</p>
Kolay gelsin