Getting Started

Installation

Layout Position

home 1 Home Style 1
home 2 Home Style 2
home 3 Home Style 3
home 4 Home Style 4
home 5 Home Style 5
home 4 Home Style 6
home 4 Home Style 7
home 4 Home Style 8

Homepage Configuration

  • To configure the default home page for your store, please go to Stores>> Settings >>Configuration>>General>>Web>>Default Pages tab, select the desired page in the CMS Home Page field and save configuration.
  • You need to change to the website / store view that you want to change (the dropdown menu in the upper left corner). You will probably have to create a new CMS page if you want to have something different from your default home page.

From the top menu, please select Content >> Elements >> Pages. Here you can find all the store pages that you have imported, so you don't need to add them. You only need to update the pages HTML and XML content as you wish.

  • Step 1. Open any of them in order to get the access to the content.
  • Step 2. Edit the content as you desire
  • Step 3. Press Save Page button to save your configuration

Once you finish demo installation, you can get same slider content as our demo sites. To edit these slider content, please go to Admin Panel > Content > Elements > Blocks and select "block-menu" block. You can modify content by custom HTML based on sample content.


Please try to use below example code in your cms contents.
<div class="col-lg-3 col-md-12">{{block class="Magento\\Cms\\Block\\Block" block_id="block-menu"}}</div>

Please try to use below example code in your cms contents.
<div class="slider-home-container" style="margin-left: -10px;">
<div class="slider-home">
<div class="item"><a title="Slider Image" href="#"><img src="{{media url="wysiwyg/slider/home-1/item-1.jpg"}}" alt="Slider Image" /></a></div>
<div class="item"><a title="Slider Image" href="#"><img style="border: 1px solid #ddd;" src="{{media url="wysiwyg/slider/home-1/item-2.jpg"}}" alt="Slider Image" /></a></div>
<div class="item"><a title="Slider Image" href="#"><img src="{{media url="wysiwyg/slider/home-1/item-3.jpg"}}" alt="Slider Image" /></a></div>
</div>
<script type="text/javascript" xml="space">// <![CDATA[
		jQuery(document).ready(function($) {
			$(".slider-home").owlCarousel({
				items:1,
				autoplay:true,
				loop:true,
				nav : true, 
				dots: true,
				autoplaySpeed : 500,
				navSpeed : 500,
				dotsSpeed : 500,
				autoplayHoverPause: true,
				margin:1,
			});	  
		});	
// ]]></script>
</div>

Please try to use below example code in your cms contents.
<div class="services-inline">
<ul>
<li>
<div class="box-icon"><img src="{{media url="wysiwyg/icon/icon-1.png"}}" alt="Shipping" /></div>
<div class="service-info">
<h2>Free Shipping & Return</h2>
<p>Free shipping on orders over $49</p>
</div>
</li>
<li>
<div class="box-icon"><img src="{{media url="wysiwyg/icon/icon-2.png"}}" alt="Money Guarantee" /></div>
<div class="service-info">
<h2>Money Guarantee</h2>
<p>30 days money back guarantee</p>
</div>
</li>
<li>
<div class="box-icon"><img src="{{media url="wysiwyg/icon/icon-3.png"}}" alt="Online Support" /></div>
<div class="service-info">
<h2>Online Support</h2>
<p>We support online 24 hours a day</p>
</div>
</li>
</ul>
</div>

1. How to show "Deals Of The Week"


Please try to use below example code in your cms contents.
<div class="deal-slider-wrapper">{{block class="Sm\FilterProducts\Block\FilterProducts" template="Sm_FilterProducts::default-deal.phtml" title_module="Deals Of The Week" select_category="" display_countdown="1" product_source="special_products" product_limitation="6"}}
<script type="text/javascript" xml="space">// <![CDATA[
	jQuery(document).ready(function($) {
		$(".deal-slider-wrapper .product-items").owlCarousel({
			responsive:{
				0:{
					items:1
				},
				480:{
					items:1
				},
				768:{
					items:1
				},
				992:{
					items:2
				},
				1200:{
					items:2
				}
			},
			
			autoplay:false,
			nav : true, 
			dots: false,
			autoplaySpeed : 500,
			navSpeed : 500,
			dotsSpeed : 500,
			autoplayHoverPause: true,
			margin:30,
		});	  
	});	
// ]]></script>
</div>

2. How to show "Smartphone & Tablet"


Please try to use below example code in your cms contents.
<div class="slider-product-home slider-single-1">{{block class="Sm\FilterProducts\Block\FilterProducts" name="product.slider" template="Sm_FilterProducts::default-grid.phtml"}}
<script type="text/javascript" xml="space">// <![CDATA[
	jQuery(document).ready(function($) {
		$(".slider-single-1 .product-items").owlCarousel({
			responsive:{
				0:{
					items:1
				},
				480:{
					items:2
				},
				768:{
					items:4
				},
				992:{
					items:4
				},
				1200:{
					items:5
				}
			},
			
			autoplay:false,
			nav : true, 
			dots: false,
			autoplaySpeed : 500,
			navSpeed : 500,
			dotsSpeed : 500,
			autoplayHoverPause: true,
			margin:20,
		});	  
	});	
// ]]></script>
</div>

3. How to show "Bottom Products"


Please try to use below example code in your cms contents.
<div class="bottom-products">
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-6">{{block class="Sm\FilterProducts\Block\FilterProducts" template="Sm_FilterProducts::default-list.phtml" title_module="New Arrivals" select_category="" display_countdown="0" product_source="lastest_products" product_limitation="3"}}</div>
<div class="col-lg-3 col-md-6 col-sm-6">{{block class="Sm\FilterProducts\Block\FilterProducts" template="Sm_FilterProducts::default-list.phtml" title_module="Bestsellers" select_category="" display_countdown="0" product_source="best_sellers" product_limitation="3"}}</div>
<div class="col-lg-3 col-md-6 col-sm-6">{{block class="Sm\FilterProducts\Block\FilterProducts" template="Sm_FilterProducts::default-list.phtml" title_module="Featured" select_category="" display_countdown="0" product_source="featured_products" product_limitation="3"}}</div>
<div class="col-lg-3 col-md-6 col-sm-6">{{block class="Sm\FilterProducts\Block\FilterProducts" template="Sm_FilterProducts::default-list.phtml" title_module="Most Viewed" select_category="" display_countdown="0" product_source="viewed_products" product_limitation="3"}}</div>
</div>
</div>

Please try to use below example code in your cms contents.
<div class="banner-home-wrapper">
<div class="row row-1">
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="banner-home lef-banner banner-image"><a title="Banner Image" href="#"> <img src="{{media url="wysiwyg/banner-image/banner-home-1.jpg"}}" alt="Banner Image" /> </a></div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="banner-home right-banner banner-image"><a title="Banner Image" href="#"> <img src="{{media url="wysiwyg/banner-image/banner-home-2.jpg"}}" alt="Banner Image" /> </a></div>
</div>
</div>
<div class="row row-2">
<div class="col-lg-3 col-md-3 col-sm-3">
<div class="banner-home lef-banner banner-image"><a title="Banner Image" href="#"> <img src="{{media url="wysiwyg/banner-image/banner-home-3.jpg"}}" alt="Banner Image" /> </a></div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="banner-home center-banner banner-image"><a title="Banner Image" href="#"> <img src="{{media url="wysiwyg/banner-image/banner-home-4.jpg"}}" alt="Banner Image" /> </a></div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3">
<div class="banner-home right-banner banner-image"><a title="Banner Image" href="#"> <img src="{{media url="wysiwyg/banner-image/banner-home-5.jpg"}}" alt="Banner Image" /> </a></div>
</div>
</div>
</div>

SM Destino is compatible with MageFan_Blog extension. You should install this extension to show Latest Blog Slider.



Please try to use below example code in your cms contents.
<div class="latest-post-wrapper">{{widget type="Magefan\Blog\Block\Widget\Recent" title="Latest Blog" number_of_posts="5" custom_template="Magefan_Blog::widget/latest-post-index.phtml"}}
	<script type="text/javascript" xml="space">// <![CDATA[
		jQuery(document).ready(function($) {
			$(".slider-post").owlCarousel({
				responsive:{
					0:{
						items:1
					},
					480:{
						items:2
					},
					768:{
						items:3
					},
					992:{
						items:4
					},
					1200:{
						items:4
					}
				},
				
				autoplay:false,
				nav : true, 
				dots: false,
				autoplaySpeed : 500,
				navSpeed : 500,
				dotsSpeed : 500,
				autoplayHoverPause: true,
				margin:19,
			});	  
		});	
	// ]]></script>
</div>

Please try to use below example code in your cms contents.
<div class="slider-brand-wrapper">
<div class="primary-title">
<h2>Featured Brands</h2>
</div>
<div class="slider-brand">
<div class="item"><a title="Brand Item" href="#"><img src="{{media url="wysiwyg/brand-slider/item-1.jpg"}}" alt="Slider Brand" /></a></div>
<div class="item"><a title="Brand Item" href="#"><img src="{{media url="wysiwyg/brand-slider/item-2.jpg"}}" alt="Slider Brand" /></a></div>
<div class="item"><a title="Brand Item" href="#"><img src="{{media url="wysiwyg/brand-slider/item-3.jpg"}}" alt="Slider Brand" /></a></div>
<div class="item"><a title="Brand Item" href="#"><img src="{{media url="wysiwyg/brand-slider/item-4.jpg"}}" alt="Slider Brand" /></a></div>
<div class="item"><a title="Brand Item" href="#"><img src="{{media url="wysiwyg/brand-slider/item-5.jpg"}}" alt="Slider Brand" /></a></div>
<div class="item"><a title="Brand Item" href="#"><img src="{{media url="wysiwyg/brand-slider/item-6.jpg"}}" alt="Slider Brand" /></a></div>
<div class="item"><a title="Brand Item" href="#"><img src="{{media url="wysiwyg/brand-slider/item-1.jpg"}}" alt="Slider Brand" /></a></div>
<div class="item"><a title="Brand Item" href="#"><img src="{{media url="wysiwyg/brand-slider/item-2.jpg"}}" alt="Slider Brand" /></a></div>
</div>
<script type="text/javascript" xml="space">// <![CDATA[
	jQuery(document).ready(function($) {
		$(".slider-brand").owlCarousel({
			responsive:{
				0:{
					items:2
				},
				480:{
					items:3
				},
				768:{
					items:5
				},
				992:{
					items:6
				},
				1200:{
					items:6
				}
			},
			
			autoplay:false,
			loop:true,
			nav : true, 
			dots: false,
			autoplaySpeed : 500,
			navSpeed : 500,
			dotsSpeed : 500,
			autoplayHoverPause: true,
			margin:30,
		});	  
	});	
// ]]></script>
</div>

Theme Setting

In Magento admin panel, navigate to Stores>> Settings>> Configuration >> MAGENTECH.COM >> SM Destino and configure its settings as you want.

Please click Here to view the theme settings.

Set Below options

Theme Color

In this option, you can set main color of entire page.

Layout Style

This theme support boxed, wide and full width layout. With boxed version you can easily customize the background image to meet your idea. With wide version, you can set page's width.

Responsive Layout

Choose "Yes" to show responsive layout for each type of devices.

Right To Left Layout

This theme support right to left layout. Choose "Yes" to view.

Show Border Radius

If you choose "Yes", border radius will be applied for all elements.

Font

In these options, you can change main font, font weight, font size, etc.

Custom

In these options, you can set color values for general elements - link, hover link and text color.

Header

Header Style: This theme support many Header Style. You can select a Header Style that you want.
Background Image: You can set background image for Header.

Header Toplink, Header Middle, Header Menu

You can change header's color. For example: title, background, link, hover and text colors, etc.

Header Menu

Menu On Top: Choose "Yes" to turn on "Sticky Menu" feature, the menu will be fixed on top when scroll down the page.

Background Color, Background Image

You can set background color and background image for main container except for the header and footer.

Background Repeat

You can set the loop status for background image. For example, with repeat - X, your background image will be repeated only horizontally.

Background Image Position

You can set its position in your page. For example, when you choose "Left Top", the background image will be set at the left side on the top of your page.

Footer

Footer Style: This theme support many Footer Style. You can select a Footer Style that you want.
Background Image: You can set background image for footer.

Footer Top, Footer Middle, Footer Bottom

Choose "Yes" to change footer's color. For example: title, background, link, hover link and text colors.

Category View

Keep Image Aspect Ratio: If you choose "Yes", shows product image with uploaded image's size ratio.
If you choose "No", product image ratio will be show based on your settings.
Hover Product Image Effect: Allow to show the hover effects when you move mouse over the product's image.

Category View (Grid Mode)

We provides flexible grid system includes: layout 1 column, layout 2 columns, layout 3 columns. You can change product's quantity per row to fit each screen.

Image Box

Thumb Styles: This option allow you choose thumb style types that you want.
Enable Loop: Choose "Yes" to repeat your loop.
Enable Keyboard Trigger: Choose "Yes/No" to "Enable/Disable" keyboard trigger feature.
Show Navigation: Choose "Yes/No" to "Show/Hide" navigation.
Enable Popup FullScreen: Choose "Yes" to show fullscreen popup when you mouse click product detail.
Show Thumbs Navigation: Choose "Yes/No" to "Show/Hide" thumb navigation.
Thumbs Margin: Distance between the thumb images.
Breakpoints: Breakpoints are used to set up the screen width at which the design of thumbnails changes.

Image Zoom

Enable Product Image Zoom: Choose "Yes/No" to "Allow/Not Allow" show product image zoom when you mouse hover on the product image.
Zoom Width Container: You can change zoom image's width.

Related - Upsell Product

In these options, you can choose "Yes/No" to "Show/Hide" and set limit quantity for related and upsell products.

Tab Style

Choose tab style types that you want.

Custom Tab

Choose "Yes", you can change name and add content for Custom Tab.

Advanced

Choose "Yes/No" to "Show/Hide" Go to Top, Add to Cart, Add to Wishlist, Add to Compare, Newsletter Popup, Copyright.

Product Label

Show New Label: Choose "Yes/No" to "Show/Hide" New Label.
New Label Text: This param allows you to add your own label text easily
Show Sale Label: Choose "Yes/No" to "Show/Hide" Sale Label.
Show Discount Percent: Choose "Yes" to show Discount Percent. Please note that you can add your own label text if you choose No.

Developer

To custom Css or Javascript.

Import Static Blocks

By clicking this button, you can import all static blocks that are used for our demo site.

Import Pages

By clicking this button, you can import all pages that are used for our demo site.

Import Demos

Click "Demo X" button to install demo version that you prefer to install. Please note that only select one of the demos are available here.

Note: When you click "Demo X" button, the administration page will reload automatically. After it finishes reloading, please click "Save Config" button and refesh cache.

Extensions

Other

Change Log

  • Upgraded to be compatible with Magento 2.1.6.
  • Adding 3 more news homepage layouts.
  • Fix issue of popup display to choose color in admin.
  • Fix quickcartpro Module issue.
  • Fix detective mobile template issue.
  • Remove module quickview.
  • Add module CartQuickPro.
  • Update Automatically Detective Mobile Layout.
  • Update mobile layout.
  • Compatible with Magento 2.1.5.
  • Updated require_config.js error.
  • Fixed multi-store issue.
  • Fixed condition checking error to display related, up-sell product.
  • Fixed less error when deploy.
  • Compatible with Magento 2.1.4

    Release