UnEagle Posted July 11, 2014 Share Posted July 11, 2014 Dzień dobry, Mam dość nietypową prośbę. Chciałbym uzyskać pomoc w zmienieniu domyślnego stanu produktu przy jego dodawaniu. Normalnie jest to stan "Nowe", a "Używane" i "Odnowione jest dostępne dopiero po rozwinięciu. Zależy mi, aby "Używane" było domyślnie. Domyślam się, że ta zmiana musi zajść w pliku "admin-products.js", dotarłem do odpowiednich linijek, jednak dalej "nydyrydy" . Czy da się to zrobić w taki sposób, aby nie zamieniać "używanych" na "nowe", tylko po prostu zmienić kolejność w tym rozwijanym menu? Posiadam wersję 1.5.4.1. Z góry dziękuję za pomoc. Link to comment Share on other sites More sharing options...
Yabber Posted July 12, 2014 Share Posted July 12, 2014 /katalog_admina/themes/default/template/controllers/products/informations.tpl Znajdź kod: <td style="padding-bottom:5px;"> <select name="condition" id="condition"> <option value="new" {if $product->condition == 'new'}selected="selected"{/if} >{l s='New'}</option> <option value="used" {if $product->condition == 'used'}selected="selected"{/if} >{l s='Used'}</option> <option value="refurbished" {if $product->condition == 'refurbished'}selected="selected"{/if}>{l s='Refurbished'}</option> </select> </td> Zamień na: <td style="padding-bottom:5px;"> <select name="condition" id="condition"> <option value="used" {if $product->condition == 'used'}selected="selected"{/if} >{l s='Used'}</option> <option value="new" {if $product->condition == 'new'}selected="selected"{/if} >{l s='New'}</option> <option value="refurbished" {if $product->condition == 'refurbished'}selected="selected"{/if}>{l s='Refurbished'}</option> </select> </td> 1 Link to comment Share on other sites More sharing options...
UnEagle Posted July 12, 2014 Author Share Posted July 12, 2014 Wszystko się zgadza. Dziękuję bardzo, temat zostaje dla potomnych . Link to comment Share on other sites More sharing options...
plik24 Posted July 12, 2014 Share Posted July 12, 2014 Zmieniłem tą linijkę i u mnie niestety nadal dodawane produkty mają stan nowe Plik po zmianie https://www.dropbox.com/s/vgnv0makffavak9/informations.tpl prosiłbym o sprawdzenie czy jest poprawny Link to comment Share on other sites More sharing options...
vekia Posted July 12, 2014 Share Posted July 12, 2014 wygląda OK spróbuj wyczyścic cache sklepu i wymusić kompilację (adv. parameters > performance) Link to comment Share on other sites More sharing options...
Recommended Posts