Jump to content

Edit History

meditation

meditation

non, c'est sur un theme personnalisé, mais pas de différence avec le theme par défaut sur  authentication.tpl et address.tpl, par contre j'ai remplacé countries_list sur adresse.tpl par :

<select name="id_country_invoice" id="id_country_invoice" class="form-control">
                                <option value="">-</option>
                                {foreach from=$countries item=v}
                                <option value="{$v.id_country}"{if (isset($smarty.post.id_country_invoice) && $smarty.post.id_country_invoice == $v.id_country) OR (!isset($smarty.post.id_country_invoice) && $sl_country == $v.id_country)} selected="selected"{/if}>{$v.name|escape:'html':'UTF-8'}</option>
                                {/foreach}
                            </select>

le pays par défaut s'affiche correctement avec adresse.tpl, il me semble c'est un vieux bug depuis ps1.6.1.14

meditation

meditation

non, c'est sur un theme personnalisé, mais pas de différence avec le theme par défaut sur  authentication.tpl et address.tpl, par contre j'ai remplacé countries_list sur adresse.tpl par :

<select name="id_country_invoice" id="id_country_invoice" class="form-control">
                                <option value="">-</option>
                                {foreach from=$countries item=v}
                                <option value="{$v.id_country}"{if (isset($smarty.post.id_country_invoice) && $smarty.post.id_country_invoice == $v.id_country) OR (!isset($smarty.post.id_country_invoice) && $sl_country == $v.id_country)} selected="selected"{/if}>{$v.name|escape:'html':'UTF-8'}</option>
                                {/foreach}
                            </select>

le pays par défaut s'affiche correctement 

×
×
  • Create New...