Настройка темы "Maximo"
Все изменения в теме для Магазина:
compare.html
В начало файла добавьте строки
{if $wa->mylang} {$features = $wa->mylang->features($features)} {$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
после {$promocards = $wa->shop->promos()}
{if $wa->mylang}{$promocards = $wa->mylang->promos($promocards)}{/if}
index.html
Дважды после {$categories = $wa->shop->categories(0, 0, true)}
добавить {if $wa->mylang}{$categories = $wa->mylang->categories($categories)}{/if}
product.cart.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}
Опционально для флагов в index.html:
После <div class="sky-proposal">
Добавить
{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}
0 комментариев