Default 3

compare.html

Add to the file start

{if $wa->mylang}{$features = $wa->mylang->features($features)}{/if}
{if $wa->mylang}{$products = $wa->mylang->products($products)}{/if}

header.html

after{$categories = $wa->shop->categories(0, null, true)}

add {if $wa->mylang}{$categories = $wa->mylang->categories($categories)}{/if}

after {$tagcloud = $wa->shop->tags()}

add {if $wa->mylang}{$tagcloud = $wa->mylang->tags($tagcloud)}{/if}

home.html

after {$categories = $wa->shop->categories(0, 0, true)}

add {if $wa->mylang}{$categories = $wa->mylang->categories($categories)}{/if}

product.html

Add as first string {if $wa->mylang}{$stocks = $wa->mylang->stocks($stocks)}{/if}

after{$upselling = $product->upSelling(12)}

add {if $wa->mylang}{$upselling = $wa->mylang->products($upselling)}{/if}

after {$crossselling = $product->crossSelling(12)}

add {if $wa->mylang}{$crossselling = $wa->mylang->products($crossselling)}{/if}

Flags in index.html (Optional):

Before <!-- core site sections (apps) -->

Add

{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}