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.
3. Search tab: (When not use Ves Autosearch module)
– Enable: Yes or No
– Custom style
– Add maximum width of search box
– Change format button search
4. Language Switcher and Currency Switcher tab:
This block setting group custom code in this file
app\design\frontend\Venustheme\grandesport\Magento_Theme\templates\html\setting.phtml
How it is show on front-end:
<?php $id = $block->getIdModifier() ? '-' . $block->getIdModifier() : ''; $currency_custom = $this->getChildHtml('currency_custom'); $store_language = $this->getChildHtml('store_language_custom'); ?> <?php if($currency_custom || $store_language): ?> <div class="setting-links" id="setting-links<?php echo $id?>"> <div class="actions dropdown options setting-links-options"> <div class="action toggle switcher-trigger" id="setting-links-trigger<?php echo $id?>"> <?php echo __('Settings'); ?> </div> <ul class="dropdown setting-links-dropdown" data-mage-init='{"dropdownDialog":{ "appendTo":"#setting-links<?php echo $id?> > .options", "triggerTarget":"#setting-links-trigger<?php echo $id?>", "closeOnMouseLeave": false, "triggerClass":"active", "parentClass":"active", "buttons":null}}'> <?php if($currency_custom): ?> <li class="switcher-currency-wrapper"> <?php echo $currency_custom ?> </li> <?php endif; ?> <?php if($store_language): ?> <li class="switcher-language-wrapper"> <?php echo $store_language ?> </li> <?php endif; ?> </ul> </div> </div> <?php endif; ?>
5. Sticky Header tab:
Config “Scroll To Fixed” header ( keep header when scrolling window). You can choose all sticky elements (all header )or choose specify element
6. 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