1. General tab: Choose Header Layout : “Default”
2. Top Link tab: Show link my account, sign in, create an account, and custom link
You can add custom top link.
On front-end, it is shown like below image:
3. Search tab:
– Enable: Yes or No
– Custom style
– Add maximum width of search box
– Change format button search
How it is shown on front-end:
4. Language Switcher and Currency Switcher tab:
This block setting group custom code in this file
app\design\frontend\Venustheme\azshop\Magento_Theme\templates\html\setting2.phtml
How it is show on front-end:
<?php $id = $block->getIdModifier() ? '-' . $block->getIdModifier() : ''; $currency_custom = $this->getChildHtml('currency_custom2'); $store_language = $this->getChildHtml('store_language_custom2'); ?> <?php if($currency_custom || $store_language): ?> <div class="setting-links"> <div class="actions options setting-links-options"> <?php if($store_language): ?> <div class="switcher-language-wrapper"> <?php echo $store_language ?> </div> <?php endif; ?> <?php if($currency_custom): ?> <div class="switcher-currency-wrapper"> <?php echo $currency_custom ?> </div> <?php endif; ?> </div> </div> <?php endif; ?>
5. Top cart tab:
– There are 4 options for you to show Top Cart, you can choose to show what you want
- Text Only
- Icon Class Only
- Text + Icon Class
- Icon Class + Text
frontend show:
0 Comment