Настройка темы "Default"
Актуально для темы версии 3.2.9.
Для Shop-Script 8 изменения только для флагов.
Опционально для флагов в index.html:
После </nav>
Добавить
{if $wa->mylang} <style>.mylang-flag{ margin-right:10px padding-top: 5px;}</style> <div style="float: right; height:100%; margin-top:5px"> {$wa->mylang->selectorFlags()} </div> {/if}
Все изменения в теме для Магазина:
compare.html
В начало файла добавьте строки
{if $wa->mylang}{$features = $wa->mylang->features($features)}{/if} {if $wa->mylang}{$products = $wa->mylang->products($products)}{/if}
header.html
после {$categories = $wa->shop->categories(0, null, true)}
добавить {if $wa->mylang}{$categories = $wa->mylang->categories($categories)}{/if}
после {$tagcloud = $wa->shop->tags()}
Добавить {if $wa->mylang}{$tagcloud = $wa->mylang->tags($tagcloud)}{/if}
home.html
после {$categories = $wa->shop->categories(0, 0, true)}
добавить {if $wa->mylang}{$categories = $wa->mylang->categories($categories)}{/if}
после {$promocards = $wa->shop->promos()}
{if $wa->mylang}{$promocards = $wa->mylang->promos($promocards)}{/if}
product.html
В самом начале добавить {if $wa->mylang}{$stocks = $wa->mylang->stocks($stocks)}{/if}
После {$upselling = $product->upSelling(12)}
добавить {if $wa->mylang}{$upselling = $wa->mylang->products($upselling)}{/if}
После {$crossselling = $product->crossSelling(12)}
Добавить {if $wa->mylang}{$crossselling = $wa->mylang->products($crossselling)}{/if}
0 комментариев