Getting Started

Installation

Layout Position

home 1 Home Style 1

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

  • How to edit description?
    To edit description, please go to Admin Panel > Content > Elements > Blocks > Search Identifier "short-description-newsletter-popup".
    Please try to use below example code in your cms contents.
    <p>Subscribe to the beauty mailing list to receive updates on new arrivals, special offers and other discount information.</p>
  • How to change background image?
    In the code directory, please go to 2 folders and coppy override background image:
    pub/static/frontend/Sm/beauty/en_US/images/bg_popup_newsletter.jpg
    app/design/frontend/Sm/beauty/web/images/bg_popup_newsletter.jpg

  • To create the "Slideshow", please go to Admin Panel > Content > Elements > Blocks > Add new block with Identifier "id1-block1".
    Please try to use below example code in your cms contents.
    	<div class="row">
    		<div class="col-lg-12 col-md-12">
    			<div class="id1-slidershow">
    				<div class="owl-carousel">
    					<div class="item">
    						<a href="#" title="Slide 1"><img src="{{media url="wysiwyg/slideshow/home-1/id1-slideshow-img-1.jpg"}}" alt="Slide 1" /></a>
    					</div>
    					
    					<div class="item">
    						<a href="#" title="Slide 2"><img src="{{media url="wysiwyg/slideshow/home-1/id1-slideshow-img-1.jpg"}}" alt="Slide 2" /></a>
    					</div>
    					
    					<div class="item">
    						<a href="#" title="Slide 3"><img src="{{media url="wysiwyg/slideshow/home-1/id1-slideshow-img-1.jpg"}}" alt="Slide 3" /></a>
    					</div>
    				</div>
    				
    				<script type="text/javascript">
    					require([
    						'jquery',
    						'owlcarousel'
    					], function ($) {
    						$(".id1-slidershow .owl-carousel").owlCarousel({
    							items:1,
    							autoplay:true,
    							loop:true,
    							nav : true, 
    							dots: true,
    							autoplaySpeed : 500,
    							navSpeed : 500,
    							dotsSpeed : 500,
    							autoplayHoverPause: true,
    							margin:1,
    						});	  
    					});			
    				</script>
    			</div>
    		</div>
    	</div>
  • To show the "Slideshow", please go to Content >> Elements >> Pages.
  • Please try to use below example code in your XML contents.
    <referenceContainer name="page.top">
    	<block class="Magento\Cms\Block\Block" name="id1-block1">
    		<arguments>
    		<argument name="block_id" xsi:type="string">id1-block1</argument>
    		</arguments>
    	</block>
    </referenceContainer>
    

  • To create the "ID1-Block2", please go to Admin Panel > Content > Elements > Blocks > Add new block with Identifier "id1-block2".
    Please try to use below example code in your cms contents.
    <!--Policy-->
    <div class="policy">
    	<div class="row">
    
    		<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
    			<div class="inner-policy">
    				<a title="90 days money back" href="#">
    					<em class="fa fa-truck"></em>
    					<span class="content">
    						<span class="title">Free Shipping</span><br/>
    						<span class="sub-title">No shipping fee for local customers</span>
    					</span>
    				</a>
    			</div>
    		</div>
    
    		<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
    			<div class="inner-policy">
    				<a title="90 days money back" href="#">
    					<em class="fa fa-usd"></em>
    					<span class="content">
    						<span class="title">Money Back Guarantee</span><br/>
    						<span class="sub-title">Refund or change item within 24 hours</span>
    					</span>
    				</a>
    			</div>
    		</div>
    
    		<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
    			<div class="inner-policy">
    				<a title="90 days money back" href="#">
    					<em class="fa fa-user"></em>
    					<span class="content">
    						<span class="title">24/7 support</span><br/>
    						<span class="sub-title">Answer all your questions with an hour</span>
    					</span>
    				</a>
    			</div>
    		</div>
    
    	</div>
    </div>
    <!--End:Policy-->
    
    <!--Shop Categories-->
    <div class="shop-categories-home">{{block class="Sm\Categories\Block\Categories" template="Sm_Categories::default-slider.phtml" title_module="Shop categories" select_category="98,108,99,100,102,103,107" limitation="4"}}
    <script type="text/javascript" xml="space">// <![CDATA[
    	require([
    		'jquery',
    		'owlcarousel',
    		'domReady!'
    	], function ($) {
    		var slider_categories = $(".slider-categories");
    		slider_categories.owlCarousel({
    			nav: true,
    			dots:false,
    			margin: 15,
    
    			responsive: {
    				0: {
    					items:1
    				},
    				480: {
    					items:2
    				},
    				768: {
    					items:2
    				},
    				991: {
    					items:3
    				},
    				1200: {
    					items:5
    				}
    			}
    		});
    	});
    // ]]></script>
    </div>
    <!--End:Shop Categories-->
  • To show the "ID1-Block2", please go to Content >> Elements >> Pages.
  • Please try to use below example code in your cms contents.
     {{block class="Magento\\Cms\\Block\\Block" block_id="id1-block2"}}

  • To create the "ID1-Block3", please go to Admin Panel > Content > Elements > Blocks > Add new block with Identifier "id1-block3".
    Please try to use below example code in your cms contents.
    <!--Group products-->
    <div class="group-product">
    		{{block class="Sm\FilterProducts\Block\FilterProducts" template="Sm_FilterProducts::default-grid-thumb.phtml" title_module="Shop Bundle Product Combo" display_countdown="0" product_source="best_sellers" select_category="110,99" product_limitation="8" thumb_limit="6" }}
    </div>
    <!--End:Group products-->
    
    <!--Banner Full-->
    <div class="banner-full banner-full-2">
    		<div class="static-image">
    			<div class="item">
    				<a href="#" title="Banner Image Full"><img src="{{media url="wysiwyg/banner/id1-banner-full.jpg"}}" alt="Banner Image Full" /></a>
    			</div>
    		</div>
    </div>
    <!--End:Banner Full-->
  • To show the "ID1-Block3", please go to Content >> Elements >> Pages.
  • Please try to use below example code in your cms contents.
     {{block class="Magento\\Cms\\Block\\Block" block_id="id1-block3"}}

  • To create the "ID1-Block4", please go to Admin Panel > Content > Elements > Blocks > Add new block with Identifier "id1-block4".
    Please try to use below example code in your cms contents.
    <!-- New Arrivals-->
    <div class="product-grid-home">
    	{{block class="Sm\FilterProducts\Block\FilterProducts" template="Sm_FilterProducts::default-grid.phtml" title_module="Shop New Arrivals"  display_countdown="0" product_source="best_sellers" select_category="185,186,187,188,266,267,268,269,270,271,272" product_limitation="8"}}
    </div>			
    <!--End:New Arrivals-->
    
    <!--Video-->
    <div class="video">
      <div class="container">
        <button class="btn-video"><i class="fa fa-play"></i></button>
      <div id="popup-modal" style="display:none;">
        <iframe width="100%" height="450" src="https://www.youtube.com/embed/fzt3lWw2J9c" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
      </div>
        <div class="wrap-content">
            <p class="title">
              Stuart weitzman fall 2016 ad campaign featuring
            </p>  
            <p class="content">
              “Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, <br/>
      eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo”
            </p>
            <a href="#" title="button action" class="btn-action">shop the collection</a>
        </div>  
      </div>
    </div>
    <!--End:Video-->
    <script>
        require(
            [
                'jquery',
                'Magento_Ui/js/modal/modal'
            ],
            function(
                $,
                modal
            ) {
                var options = {
                    type: 'popup',
                    responsive: true,
                    innerScroll: true,
                modalClass: 'popup-video',
                };
    
                var popup = modal(options, $('#popup-modal'));
                $(".btn-video").on('click',function(){ 
                    $("#popup-modal").modal("openModal");
                });
    
            }
        );
    </script>
  • To show the "ID1-Block4", please go to Content >> Elements >> Pages.
  • Please try to use below example code in your cms contents.
     {{block class="Magento\\Cms\\Block\\Block" block_id="id1-block4"}}

  • To create the "ID1-Block5", please go to Admin Panel > Content > Elements > Blocks > Add new block with Identifier "id1-block5".
    Please try to use below example code in your cms contents.
    <!--Product Tab-->
    <div class="tab-feature-products">
    		{{block class="Sm\ListingTabs\Block\ListingTabs" template="Sm_ListingTabs::default.phtml" title="Featured Products" type_show="slider" type_listing="all" display_countdown="0" type_filter="categories"  category_tabs="185,186,187,188,266,267" order_by="num_rating_summary" order_dir="ASC" limitation="8" product_row="1" show_description="0" nbcolum1="1" nbcolum2="2" nbcolum3="3" nbcolum4="4" nbcolum5="5" margin="15" nav="true" dot="false"}}
    	</div>
    <!--End: Product Tab-->
    			
    <!--Testimonial and Banner Half-->
    <!--Testimonial and Banner Half-->
    <div class="row testimonial">
    	<!--Col Left-->
    	<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
    		<div class="client-slider">
    			<div class="inner-client">
    				<div class="owl-carousel">
    					<div class="item">
    						<div class="client-image">
    							<img src="{{media url="wysiwyg/clients/id-avartar-tetimonial.jpg"}}" alt="Client Image" />
    						</div>
    						
    						<div class="client-info">
    							<div class="client-description">“Sed ut perspiciatis unde omnis iste natus error sit
    	voluptatem accusantium doloremque laudantium, totam rem aperiam
    	eaque ipsa quae ab illo inventore veritatis et quasi architecto
    	beatae vitae dicta sunt explicabo”</div>
    							<div class="client-name">Michael Jackson</div>
    						</div>
    					</div>
    					
    					<div class="item">
    						<div class="client-image">
    							<img src="{{media url="wysiwyg/clients/id-avartar-tetimonial.jpg"}}" alt="Client Image" />
    						</div>
    						
    						<div class="client-info">
    							<div class="client-description">“Sed ut perspiciatis unde omnis iste natus error sit
    	voluptatem accusantium doloremque laudantium, totam rem aperiam
    	eaque ipsa quae ab illo inventore veritatis et quasi architecto
    	beatae vitae dicta sunt explicabo”</div>
    							<div class="client-name">Johny Walker</div>
    						</div>
    					</div>
    					
    					<div class="item">
    						<div class="client-image">
    							<img src="{{media url="wysiwyg/clients/id-avartar-tetimonial.jpg"}}" alt="Client Image" />
    						</div>
    						
    						<div class="client-info">
    							<div class="client-description">“Sed ut perspiciatis unde omnis iste natus error sit
    	voluptatem accusantium doloremque laudantium, totam rem aperiam
    	eaque ipsa quae ab illo inventore veritatis et quasi architecto
    	beatae vitae dicta sunt explicabo”</div>
    							<div class="client-name">Michael Jackson</div>
    						</div>
    					</div>
    				</div>
    				
    				<script type="text/javascript">
    					require([
    						'jquery',
    						'owlcarousel'
    					], function ($) {
    						$(".client-slider .owl-carousel").owlCarousel({
    							items:1,
    							autoplay:true,
    							loop:true,
    							nav : false, 
    							dots: true,
    							autoplaySpeed : 500,
    							navSpeed : 500,
    							dotsSpeed : 500,
    							autoplayHoverPause: true,
    							margin:30,
    						});	  
    					});			
    				</script>
    			</div>
    		</div>
    	</div>
    
    	<!--End:Col Left-->
    
    	<!--Col Right-->
    	<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
    		<div class="static-image">
    			<div class="item">
    				<a href="#" title="Banner Image Half"><img src="{{media url="wysiwyg/banner/id1-banner-half.jpg"}}" alt="Banner Image Half" /></a>
    			</div>
    		</div>
    	</div>
    	<!--End:Col Right-->
    
    </div>
    <!--End:Testimonial-->
    
    <!--Brand slider-->
    	<div class="brand-slider">
    		<div class="brand-content">
    			<div class="slider-content">
    				<div class="owl-carousel">
    					<div class="item">
    						<a href="#" title="Brand"><img src="{{media url="wysiwyg/brand/id-brand-1.png"}}" alt="Brand Image" /></a>
    					</div>
    					
    					<div class="item">
    						<a href="#" title="Brand"><img src="{{media url="wysiwyg/brand/id-brand-2.png"}}" alt="Brand Image" /></a>
    					</div>
    					
    					<div class="item">
    						<a href="#" title="Brand"><img src="{{media url="wysiwyg/brand/id-brand-3.png"}}" alt="Brand Image" /></a>
    					</div>
    					
    					<div class="item">
    						<a href="#" title="Brand"><img src="{{media url="wysiwyg/brand/id-brand-4.png"}}" alt="Brand Image" /></a>
    					</div>
    					<div class="item">
    						<a href="#" title="Brand"><img src="{{media url="wysiwyg/brand/id-brand-5.png"}}" alt="Brand Image" /></a>
    					</div>
    					
    					<div class="item">
    						<a href="#" title="Brand"><img src="{{media url="wysiwyg/brand/id-brand-6.png"}}" alt="Brand Image" /></a>
    					</div>
    					
    					<div class="item">
    						<a href="#" title="Brand"><img src="{{media url="wysiwyg/brand/id-brand-1.png"}}" alt="Brand Image" /></a>
    					</div>
    					
    					<div class="item">
    						<a href="#" title="Brand"><img src="{{media url="wysiwyg/brand/id-brand-2.png"}}" alt="Brand Image" /></a>
    					</div>
    					
    					<div class="item">
    						<a href="#" title="Brand"><img src="{{media url="wysiwyg/brand/id-brand-3.png"}}" alt="Brand Image" /></a>
    					</div>
    					
    					<div class="item">
    						<a href="#" title="Brand"><img src="{{media url="wysiwyg/brand/id-brand-4.png"}}" alt="Brand Image" /></a>
    					</div>
    					<div class="item">
    						<a href="#" title="Brand"><img src="{{media url="wysiwyg/brand/id-brand-5.png"}}" alt="Brand Image" /></a>
    					</div>
    					
    					<div class="item">
    						<a href="#" title="Brand"><img src="{{media url="wysiwyg/brand/id-brand-6.png"}}" alt="Brand Image" /></a>
    					</div>
    					
    					<div class="item">
    						<a href="#" title="Brand"><img src="{{media url="wysiwyg/brand/id-brand-1.png"}}" alt="Brand Image" /></a>
    					</div>
    					
    					<div class="item">
    						<a href="#" title="Brand"><img src="{{media url="wysiwyg/brand/id-brand-2.png"}}" alt="Brand Image" /></a>
    					</div>
    					
    					<div class="item">
    						<a href="#" title="Brand"><img src="{{media url="wysiwyg/brand/id-brand-3.png"}}" alt="Brand Image" /></a>
    					</div>
    					
    					<div class="item">
    						<a href="#" title="Brand"><img src="{{media url="wysiwyg/brand/id-brand-4.png"}}" alt="Brand Image" /></a>
    					</div>
    					<div class="item">
    						<a href="#" title="Brand"><img src="{{media url="wysiwyg/brand/id-brand-5.png"}}" alt="Brand Image" /></a>
    					</div>
    					
    					<div class="item">
    						<a href="#" title="Brand"><img src="{{media url="wysiwyg/brand/id-brand-6.png"}}" alt="Brand Image" /></a>
    					</div>
    				</div>
    				
    				<script type="text/javascript">
    					require([
    						'jquery',
    						'owlcarousel'
    					], function ($) {
    						$(".slider-content .owl-carousel").owlCarousel({
    							autoplay:false,
    							loop:true,
    							nav : true, 
    							dots: false,
    							autoplaySpeed : 500,
    							navSpeed : 500,
    							dotsSpeed : 500,
    							autoplayHoverPause: true,
    							margin:0,
    							responsive: {
    								0: {
    									items: 2
    								},
    								480: {
    									items: 3
    								},
    								768: {
    									items: 4
    								},
    								991: {
    									items: 5
    								},						
    								1200: {
    									items: 6
    								}
    							}
    						});	  
    					});			
    				</script>
    			</div>
    		</div>
    	</div>
    <!--End: Brand slider-->
    {{widget type="Magefan\Blog\Block\Widget\Recent" title="Latest Blogs" number_of_posts="6" category_id="0"}}
  • To show the "ID1-Block5", please go to Content >> Elements >> Pages.
  • Please try to use below example code in your cms contents.
     {{block class="Magento\\Cms\\Block\\Block" block_id="id1-block5"}}

  • To create the "Footer", please go to Admin Panel > Content > Elements > Blocks > Add new block with Identifier "footer-1-content".
    Please try to use below example code in your cms contents.
    <div class="container">
    	<div class="footer-top">
    		<div class="row">
    			<div class="col-lg-4 col-md-4">
    				<p class="title-form-letter">Sign Up For Newsletter</p>
    			</div>
    
    			<div class="col-lg-8 col-md-8">
    				<div class="subscribe-footer">
    					{{block class="Magento\Newsletter\Block\Subscribe" template="subscribe-footer.phtml"}}
    				</div>
    			</div>
    		</div>
    	</div>
    	
    	<div class="footer-middle">
    		<div class="row">
    			<div class="col-lg-4 col-md-4">
    				<div class="logo-footer">
    					<h2><img src="{{media url="wysiwyg/footer/logo-footer.png"}}" alt="Logo Footer" /></h2>
    				</div>
    						
    				<div class="about-shop">
    					Lorem Ipsum is simply dummy text of the printing and
    typesetting industry. Lorem Ipsum is simply dummy text
    of the printing Lorem Ipsum is simply dummy text of the
    printing and typesetting...
    				</div>
    			</div>
    			
    			<div class="col-lg-3 col-md-3">
    				<div class="block-footer">
    					<div class="title-block-footer">
    						CONTACT US
    					</div>
    					
    				<div class="about-shop">
    					<ul>
    						<li class="address"><img src="{{media url="wysiwyg/footer/icon_footer_address.png"}}" alt="" /><span>5611 Wellington Road, Suite 115, 
    Gainesville, VA 20155</span></li>
    						<li class="phone"> <img src="{{media url="wysiwyg/footer/icon_footer_phone.png"}}" alt="" /><span>608 1345 96 - 608 1345 90</span></li>
    						<li class="email"><img src="{{media url="wysiwyg/footer/icon_footer_email.png"}}" alt="" /><span>contact@wpthemego.com</span></li>
    						<li class="social">
    							<a href="#"><i class="fa fa-facebook"></i></a>
    							<a href="#"><i class="fa fa-twitter"></i></a>
    							<a href="#"><i class="fa fa-tumblr"></i></a>
    							<a href="#"><i class="fa fa-pinterest-p"></i></a>
    							<a href="#"><i class="fa fa-linkedin"></i></a>
    							<a href="#"><i class="fa fa-google-plus"></i></a>
    						</li>
    					</ul>
    				</div>
    				</div>
    			</div>
    			
    			<div class="col-lg-3 col-md-3 col-xs-6">
    				<div class="block-footer">
    					<div class="title-block-footer">
    						Categories
    					</div>
    					
    					<div class="content-block-footer">
    						<ul>
    							<li><a href="#" title="Caps & Hats">Caps & Hats</a></li>
    							<li><a href="#" title="Hoodies & Sweatshirts">Hoodies & Sweatshirts</a></li>
    							<li><a href="#" title="Jacket & Coats">Jacket & Coats</a></li>
    							<li><a href="#" title="Jumpers & Cardigans">Jumpers & Cardigans</a></li>
    							<li><a href="#" title="Shoes, Boots & Trainers">Shoes, Boots & Trainers</a></li>
    							<li><a href="#" title="Leather Jackets">Leather Jackets</a></li>
    							<li><a href="#" title="Underwear & Socks">Underwear & Socks</a></li>
    						</ul>
    					</div>
    				</div>
    			</div>
    			
    			<div class="col-lg-2 col-md-2 col-xs-6">
    				<div class="block-footer">
    					<div class="title-block-footer">
    						Customer service
    					</div>
    					
    					<div class="content-block-footer">
    						<ul>
    							<li><a href="#" title="Customer Service">Customer Service</a></li>
    							<li><a href="#" title="Shipping & Returns">Shipping & Returns</a></li>
    							<li><a href="#" title="Track Your Order">Track Your Order</a></li>
    							<li><a href="#" title="Help Center">Help Center</a></li>
    							<li><a href="#" title="Store Location">Store Location</a></li>
    							<li><a href="#" title="My Account">My Account</a></li>
    							<li><a href="#" title="Customer Feedback">Customer Feedback</a></li>
    						</ul>
    					</div>
    				</div>
    			</div>
    			
    		</div>
    	</div>
    </div>
    
    

  • To edit "About us" page, please go to Admin Panel > Content > Elements > Blocks > Add new block with Identifier "about-us-page".
    You can edit code HTML in your cms contents.
    <div class="aboutus-page"≫
    	
    
    	<!--Row 1:What We Do--≫
    	<div class="row row-1"≫
    
    		<h3 class="title text-center"≫What We Do</h3≫
    		<p class="sub-title text-center"≫The first of the month is coming, we have to get money, we have no choice</p≫
    
    		<div class="col-lg-4 col-md-4 col-xs-12 col-sm-6"≫
    			<div class="wrap-about-item"≫
    				<div class="row"≫
    					<div class="col-lg-3 col-xs-12"≫
    						<img src="{{media url="wysiwyg/pages/about-img-item-1.png"}}" alt="about-item" title="about-item"/≫
    					</div≫
    					<div class="col-lg-9 col-xs-12"≫
    						<h4 class="title-about-item"≫
    							Digital Marketing
    						</h4≫	
    						<p class="content-about-item"≫
    							It’s important to use cocoa butter. It’s the key to more success, why not live smooth? Why live rough? Another one. Give thanks to the most high got life, we breathing...
    						</p≫
    					</div≫
    				</div≫	
    			</div≫
    		</div≫
    
    		<div class="col-lg-4 col-md-4 col-xs-12 col-sm-6"≫
    			<div class="wrap-about-item"≫
    				<div class="row"≫
    					<div class="col-lg-3 col-xs-12"≫
    						<img src="{{media url="wysiwyg/pages/about-img-item-2.png"}}" alt="about-item" title="about-item"/≫
    					</div≫
    					<div class="col-lg-9 col-xs-12"≫
    						<h4 class="title-about-item"≫
    							Creative Design
    						</h4≫	
    						<p class="content-about-item"≫
    							It’s important to use cocoa butter. It’s the key to more success, why not live smooth? Why live rough? Another one. Give thanks to the most high got life, we breathing...
    						</p≫
    					</div≫
    				</div≫	
    			</div≫
    		</div≫
    
    		<div class="col-lg-4 col-md-4 col-xs-12 col-sm-6"≫
    			<div class="wrap-about-item"≫
    				<div class="row"≫
    					<div class="col-lg-3 col-xs-12"≫
    						<img src="{{media url="wysiwyg/pages/about-img-item-3.png"}}" alt="about-item" title="about-item"/≫
    					</div≫
    					<div class="col-lg-9 col-xs-12"≫
    						<h4 class="title-about-item"≫
    							Strategic Planing
    						</h4≫	
    						<p class="content-about-item"≫
    							It’s important to use cocoa butter. It’s the key to more success, why not live smooth? Why live rough? Another one. Give thanks to the most high got life, we breathing...
    						</p≫
    					</div≫
    				</div≫	
    			</div≫
    		</div≫
    
    		<div class="col-lg-4 col-md-4 col-xs-12 col-sm-6"≫
    			<div class="wrap-about-item"≫
    				<div class="row"≫
    					<div class="col-lg-3 col-xs-12"≫
    						<img src="{{media url="wysiwyg/pages/about-img-item-4.png"}}" alt="about-item" title="about-item"/≫
    					</div≫
    					<div class="col-lg-9 col-xs-12"≫
    						<h4 class="title-about-item"≫
    							Optimazine SEO
    						</h4≫	
    						<p class="content-about-item"≫
    							It’s important to use cocoa butter. It’s the key to more success, why not live smooth? Why live rough? Another one. Give thanks to the most high got life, we breathing...
    						</p≫
    					</div≫
    				</div≫	
    			</div≫
    		</div≫
    
    		<div class="col-lg-4 col-md-4 col-xs-12 col-sm-6"≫
    			<div class="wrap-about-item"≫
    				<div class="row"≫
    					<div class="col-lg-3 col-xs-12"≫
    						<img src="{{media url="wysiwyg/pages/about-img-item-5.png"}}" alt="about-item" title="about-item"/≫
    					</div≫
    					<div class="col-lg-9 col-xs-12"≫
    						<h4 class="title-about-item"≫
    							Brand Indentity
    						</h4≫	
    						<p class="content-about-item"≫
    							It’s important to use cocoa butter. It’s the key to more success, why not live smooth? Why live rough? Another one. Give thanks to the most high got life, we breathing...
    						</p≫
    					</div≫
    				</div≫	
    			</div≫
    		</div≫
    
    		<div class="col-lg-4 col-md-4 col-xs-12 col-sm-6"≫
    			<div class="wrap-about-item"≫
    				<div class="row"≫
    					<div class="col-lg-3 col-xs-12"≫
    						<img src="{{media url="wysiwyg/pages/about-img-item-6.png"}}" alt="about-item" title="about-item"/≫
    					</div≫
    					<div class="col-lg-9 col-xs-12"≫
    						<h4 class="title-about-item"≫
    							Website Development
    						</h4≫	
    						<p class="content-about-item"≫
    							It’s important to use cocoa butter. It’s the key to more success, why not live smooth? Why live rough? Another one. Give thanks to the most high got life, we breathing...
    						</p≫
    					</div≫
    				</div≫	
    			</div≫
    		</div≫
    
    
    	</div≫
    
    	<!--Row 2:Counter--≫
    	<div class="row row-2 text-center"≫
    		<div class="col-lg-3 col-xs-12 col-sm-3"≫
    			<div class="wrap-item-counter"≫
    				<div class="counter" data-count="1286"≫0</div≫
    				<p class="title-counter"≫Project</p≫
    			</div≫
    		</div≫
    		<div class="col-lg-3 col-xs-12 col-sm-3"≫
    			<div class="wrap-item-counter"≫
    				<div class="counter" data-count="8"≫0</div≫
    				<p class="title-counter"≫Award Winner</p≫
    			</div≫
    		</div≫
    		<div class="col-lg-3 col-xs-12 col-sm-3"≫
    			<div class="wrap-item-counter"≫
    				<div class="counter" data-count="3898"≫0</div≫
    				<p class="title-counter"≫Happy Customer</p≫
    			</div≫
    		</div≫
    		<div class="col-lg-3 col-xs-12 col-sm-3"≫
    			<div class="wrap-item-counter"≫
    				<div class="counter" data-count="86"≫0</div≫
    				<p class="title-counter"≫Store Location</p≫
    			</div≫
    		</div≫
    	</div≫
    	<script type="text/javascript"≫
    		require([
    			'jquery',
    		], function ($) {
    					$('.counter').each(function() {
    					  var $this = $(this),
    					      countTo = $this.attr('data-count');
    					  
    					  $({ countNum: $this.text()}).animate({
    					    countNum: countTo
    					  },
    					  {
    
    					    duration: 8000,
    					    easing:'linear',
    					    step: function() {
    					      $this.text(Math.floor(this.countNum));
    					    },
    					    complete: function() {
    					      $this.text(this.countNum);
    					      //alert('finished');
    					    }
    
    					  });  
    					}); 
    				});
    	</script≫
    
    	<!--Row 3:Our Team--≫
    	<div class="row row-3"≫
    		<h3 class="title text-center"≫
    			Our Team
    		</h3≫	
    		<p class="sub-title text-center"≫
    			The first of the month is coming, we have to get money, we have no choice
    		</p≫
    
    		<div class="col-lg-3 col-xs-6 col-sm-3"≫
    			<div class="wrap-team-item"≫
    				<img title="avatar" src="{{media url="wysiwyg/pages/about-img-avatar-1.jpg"}}" alt="avartar"≫
    				<div class="wrap-content"≫
    					<div class="social"≫
    						<a href="#" class="social-item"≫ <i class="fa fa-facebook"≫</i≫</a≫
    						<a href="#" class="social-item"≫ <i class="fa fa-twitter"≫</i≫</a≫
    						<a href="#" class="social-item"≫ <i class="fa fa-google-plus"≫</i≫</a≫
    						<a href="#" class="social-item"≫ <i class="fa fa-youtube-play"≫</i≫</a≫
    						<a href="#" class="social-item"≫ <i class="fa fa-rss"≫</i≫</a≫
    					</div≫
    				</div≫
    			</div≫
    			<div class="wrap-info"≫
    				<h4 class="name"≫Jonathan Doe</h4≫
    				<p class="job"≫SEO & Marketing</p≫
    			</div≫
    		</div≫
    
    		<div class="col-lg-3 col-xs-6 col-sm-3"≫
    			<div class="wrap-team-item"≫
    				<img title="avatar" src="{{media url="wysiwyg/pages/about-img-avatar-2.jpg"}}" alt="avartar"≫
    				<div class="wrap-content"≫
    					<div class="social"≫
    						<a href="#" class="social-item"≫ <i class="fa fa-facebook"≫</i≫</a≫
    						<a href="#" class="social-item"≫ <i class="fa fa-twitter"≫</i≫</a≫
    						<a href="#" class="social-item"≫ <i class="fa fa-google-plus"≫</i≫</a≫
    						<a href="#" class="social-item"≫ <i class="fa fa-youtube-play"≫</i≫</a≫
    						<a href="#" class="social-item"≫ <i class="fa fa-rss"≫</i≫</a≫
    					</div≫
    				</div≫
    			</div≫
    			<div class="wrap-info"≫
    				<h4 class="name"≫Jonathan Doe</h4≫
    				<p class="job"≫SEO & Marketing</p≫
    			</div≫
    		</div≫
    
    		<div class="col-lg-3 col-xs-6 col-sm-3"≫
    			<div class="wrap-team-item"≫
    				<img title="avatar" src="{{media url="wysiwyg/pages/about-img-avatar-3.jpg"}}" alt="avartar"≫
    				<div class="wrap-content"≫
    					<div class="social"≫
    						<a href="#" class="social-item"≫ <i class="fa fa-facebook"≫</i≫</a≫
    						<a href="#" class="social-item"≫ <i class="fa fa-twitter"≫</i≫</a≫
    						<a href="#" class="social-item"≫ <i class="fa fa-google-plus"≫</i≫</a≫
    						<a href="#" class="social-item"≫ <i class="fa fa-youtube-play"≫</i≫</a≫
    						<a href="#" class="social-item"≫ <i class="fa fa-rss"≫</i≫</a≫
    					</div≫
    				</div≫
    			</div≫
    			<div class="wrap-info"≫
    				<h4 class="name"≫Jonathan Doe</h4≫
    				<p class="job"≫SEO & Marketing</p≫
    			</div≫
    		</div≫
    
    		<div class="col-lg-3 col-xs-6 col-sm-3"≫
    			<div class="wrap-team-item"≫
    				<img title="avatar" src="{{media url="wysiwyg/pages/about-img-avatar-4.jpg"}}" alt="avartar"≫
    				<div class="wrap-content"≫
    					<div class="social"≫
    						<a href="#" class="social-item"≫ <i class="fa fa-facebook"≫</i≫</a≫
    						<a href="#" class="social-item"≫ <i class="fa fa-twitter"≫</i≫</a≫
    						<a href="#" class="social-item"≫ <i class="fa fa-google-plus"≫</i≫</a≫
    						<a href="#" class="social-item"≫ <i class="fa fa-youtube-play"≫</i≫</a≫
    						<a href="#" class="social-item"≫ <i class="fa fa-rss"≫</i≫</a≫
    					</div≫
    				</div≫
    			</div≫
    			<div class="wrap-info"≫
    				<h4 class="name"≫Jonathan Doe</h4≫
    				<p class="job"≫SEO & Marketing</p≫
    			</div≫
    		</div≫
    
    	</div≫
    
    	<!--Row 4:Who Are You --≫
    	<div class="row row-4"≫
    		<h3 class="title text-center"≫Who Are You?</h3≫
    		<p class="sub-title text-center"≫The first of the month is coming, we have to get money, we have no choice</p≫
    
    		<div class="col-lg-6"≫
    			<iframe width="100%" height="405" src="https://www.youtube.com/embed/Bey4XXJAqS8" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen≫</iframe≫
    		</div≫
    
    		<div class="col-lg-6"≫
    			<div class="barWrapper"≫
    				<span class="progressText"≫Development</span≫
    				<div class="progress"≫
    					<div class="progress-bar progress-bar-striped progress-bar-danger active" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" ≫   
    					    <span  class="popOver " data-toggle="tooltip" data-placement="top" title="80%"≫ </span≫     
    					</div≫
    				</div≫
    			</div≫
    
    			<div class="barWrapper"≫
    				<span class="progressText"≫Website Design</span≫
    				<div class="progress "≫
    					  <div class="progress-bar progress-bar-striped progress-bar-danger active" role="progressbar" aria-valuenow="60" aria-valuemin="10" aria-valuemax="100" style=""≫
    					     <span  class="popOver" data-toggle="tooltip" data-placement="top" title="60%"≫ </span≫  
    					  </div≫
    				</div≫
    			</div≫
    
    			<div class="barWrapper"≫
    				<span class="progressText"≫HTML / CSS</span≫
    				<div class="progress"≫
    					  <div class="progress-bar progress-bar-striped progress-bar-danger active" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"≫
    					     <span  class="popOver" data-toggle="tooltip" data-placement="top" title="90%"≫ </span≫  
    					  </div≫
    				</div≫
    			</div≫
    
    			<div class="barWrapper"≫
    				<span class="progressText"≫Photography</span≫
    				<div class="progress"≫ 
    				  <div class="progress-bar progress-bar-striped progress-bar-danger active" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"≫
    				    <span  class="popOver" data-toggle="tooltip" data-placement="top" title="50%"≫ </span≫  
    				  </div≫
    				</div≫
    			</div≫
    
    			
    			<script type="text/javascript"≫
    				require([
    					'jquery',
    				], function ($) {
    							$(function () { 
    							  $('[data-toggle="tooltip"]').tooltip({trigger: 'manual'}).tooltip('show');
    							});  
    
    							$( window ).scroll(function() {   
    							  // if($( window ).scrollTop() ≫ 10){   scroll down abit and get the action   
    							  $(".progress-bar").each(function(){
    							    each_bar_width = $(this).attr('aria-valuenow');
    							    $(this).width(each_bar_width + '%');
    							  });
    							       
    							 //  }  
    							});
    						});
    			</script≫
    
    		</div≫
    	</div≫
    </div≫

  • To edit "Contact us" page, please go to Admin Panel > Content > Elements > Blocks > Add new block with Identifier "contact-us-page".
    You can edit code HTML in your cms contents.
    <div class="contact-us-page">
    <div class="google-map">
    <script src="http://maps.google.com/maps/api/js?key=AIzaSyCdLmykXAklykOYyXdILXpZvQGPmc58LIk" type="text/javascript"></script>
    <div id="map"> </div>
    <script type="text/javascript">
    	var myOptions = {
             zoom: 15,
             scrollwheel: false,
             center: new google.maps.LatLng(48.89364,2.33739), 	
             mapTypeId: google.maps.MapTypeId.ROADMAP
          };
          var map = new google.maps.Map(document.getElementById("map"), myOptions);
    </script>
    </div>
    <div class="row form-contact">
    <div class="col-lg-4 col-md-4">
    <div class="contact-info">
    <div class="title-bonus-page">
    <h2>Contact Us</h2>
    </div>
    <div class="contact-content">
    <p class="contact-description">Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam<br /> Quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat sed do eiusmod tempor incididunt ut labore dolore</p>
    <ul class="address-info">
    <li class="add-icon">123 Suspendis mattis, Sollicitudin District,<br />Accums Fringilla</li>
    <li class="email-icon">Email: <a title="Send Email" href="mailto:support@domainstore.com">support@domainstore.com</a></li>
    <li class="phone-icon">Hotline: <a title="Call" href="tel:0123456789">0123456789</a></li>
    </ul>
    </div>
    </div>
    </div>
    <div class="col-lg-8 col-md-8">{{block class="Magento\Contact\Block\ContactForm" template="Magento_Contact::form-contact.phtml"}}</div>
    </div>
    </div
    
  • Theme Setting

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

    Please click Here to view the theme settings.

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

    Body Font

    In these options, you can change main font, font size, link color, text color, background, etc.

    Menu

    Menu Style: This theme support mega menu and css menu. You can select a menu style that you want.

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

    Mobile Menu Type: This theme support sidebar menu and collapse on mobile. You can select a menu style that you want.

    Layout Style: This theme support boxed and full width layout. You can select a layout style that you want.
    Responsive Layout: Choose "Yes" to show responsive layout for each type of devices.

    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

    Thumbs 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 on the product detail.
    Show Thumbs Navigation: Choose "Yes/No" to "Show/Hide" thumb navigation.
    Thumbs Margin: Distance between the thumb images.
    Thumbs Border Active Width: You can change width of thumb boder when active.
    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.

    Social Buttons

    Show social buttons: Choose "Yes/No" to "Show/Hide" social button in detail page.

    Related - Upsell Product

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

    Tab

    Choose tab style types that you want.

    Custom Tab

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

    Choose "Yes" in params Show Facebook, Twitter, Google+, Linkedin to show socials. When you choose "Yes", you can change name and link of socials.

    Advanced

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

    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.

    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


    Change Log

    Click here to view changelog.