Categories

Featured templates

Featured templates

Multipurpose Website Templates. Shop pages overview

Rating: 5.0/5. From 2 votes.
Please wait...

We are ready to present you a short overview of the shop pages in Multipurpose template.

Multipurpose template has several shop pages available:

Multipurpose_Website_Templates._Shop_pages_overview_1
  1. Product Catalog allows you to see all the products available:

    Multipurpose_Website_Templates._Shop_pages_overview_2

    You can change/add or remove your products here. To modify product catalog page, please edit the shop-catalog.html file from the site folder of your template pack. Products are added with the following HTML code:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    <div class="col-xs-6 col-md-3">
        <div class="product tumbnail thumbnail-3"><a href="shop-product.html"><img src="images/shop-1.jpg" alt=""></a>
         <div class="caption">jQuery);
     
            <h6><a href="shop-product.html">Short Sleeve T-Shirt</a></h6><span class="price">
                <del>$24.99</del></span><span class="price sale">$12.49</span>
         </div>
         </div>
     </div>
  2. Single Product is an example of the single product page. To modify it, please edit the shop-product.html file from the site folder. You can copy this file content to add different single products pages to your site. It consists of the following parts:

    • Product image is added with the help of the slider gallery code:

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      <div class="slider">
        <div data-lightbox="gallery" class="swiper-container gallery-top">
       
          <div class="swiper-slide">
              <div class="swiper-slide-caption"><a href="images/shop-19_original.jpg" data-lightbox="image" class="darkbox"><img src="images/shop-19.jpg" alt="" class="img_zoom"></a></div>
          </div>
        </div>
       </div>
        <div class="swiper-container gallery-thumbs">
          <div class="swiper-wrapper">
              <div class="swiper-slide">
                  <div class="swiper-slide-caption"><img src="images/shop-19.jpg" alt=""></div>
              </div>
          </div>
        </div>
  • Product short description section is used to provide product short information. This section is added with the following HTML code:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    <div class="slider">
      <div data-lightbox="gallery" class="swiper-container gallery-top">
     
        <div class="swiper-slide">
            <div class="swiper-slide-caption"><a href="images/shop-19_original.jpg" data-lightbox="image" class="darkbox"><img src="images/shop-19.jpg" alt="" class="img_zoom"></a></div>
        </div>
      </div>
     </div>
      <div class="swiper-container gallery-thumbs">
        <div class="swiper-wrapper">
            <div class="swiper-slide">
                <div class="swiper-slide-caption"><img src="images/shop-19.jpg" alt=""></div>
            </div>
        </div>
      </div>
  • To add Price and add to cart button use following code:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    <div class="col-md-5 text-center text-md-left">    
      <h1 class="text-bold h1-variant-2">Product name</h1><a href="#" class="rating"><span class="fa-star"></span><span class="fa-star"></span><span class="fa-star"></span><span class="fa-star"></span><span class="fa-star-o"></span></a><a href="#" class="text-light-clr">1 customer review</a>
      <p class="big offset-6 line-height-2">
                 Product description here.
      </p>
      <div class="caption"><span class="text-uppercase text-light-clr small">quantity</span><span class="quantity round-xl"><span class="fa-angle-left"></span><span class="num text-dark-variant-3">1</span><span class="fa-angle-right"></span></span><span class="price">
           <del>$24.99</del></span><span class="price sale">$12.49</span><a href="#" class="btn btn-success round-xl btn-sm btn-block offset-6">Add to cart</a>
        <dl class="info-list offset-5">
            <dt>SKU</dt>
            <dd>036895</dd>
            <dt>Categories</dt>
         </dl>
       </div>
    </div>
  • Share icons are added with the help of following lines:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    <div class="share offset-6"><span class="small font-secondary text-uppercase text-light-clr">Share this</span>
         <ul class="list-inline list-inline-4 pull-md-right">
               <li class="first"><a href="#" class="fa-facebook text-info"></a></li>
               <li><a href="#" class="fa-pinterest-p text-danger"></a></li>
               <li><a href="#" class="fa-twitter text-primary"></a></li>
               <li><a href="#" class="fa-google-plus text-danger"></a></li>
               <li><a href="#" class="fa-instagram text-info"></a></li>
               <li><a href="#" class="fa-rss"></a></li>
               <li class="last"><a href="#" class="fa-envelope text-info"></a></li>
          </ul>
       </div>
  • Products tabs section is used for providing additional information about the product. You can add some extra product information, product features and reviews with the help of the tabs. Check our video tutorial on how to create and manage tabs layout.

    Multipurpose_Website_Templates._Shop_pages_overview_3
  • Related Products section is usually used for adding products that have common features with the product, displayed on the page. In order to make changes to this section, please edit the same shop-product.html file on the lines 409-446. Here is an example of the related product code:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    <!--Start section-->
        <section class="text-center well well-sm">
            <div class="container">
                <h4 class="text-dark-variant-4">Related Products</h4>
                <div class="row flow-offset-1 offset-5">
                    <div class="col-xs-6 col-md-3">
                        <div class="product tumbnail thumbnail-3"><a href="shop-product.html"><img src="images/shop-4.jpg" alt=""></a>
                            <div class="caption">
                                <h6><a href="shop-product.html">Short Sleeve T-Shirt</a></h6><span class="price">
                                    <del>$24.99</del></span><span class="price sale">$12.49</span>
                                </div>
                            </div>
                        </div>
                      </div>
                   </div>
                </section>
             <!--End section-->
    Multipurpose_Website_Templates._Shop_pages_overview_4
  • Shopping cart page is added with the help of shop-cart.html file. Please, open it with any code editor you have on your computer (we recommend to use NotePad++ or Sublime). Shopping cart consists of:

    • Actual cart content:

      Multipurpose_Website_Templates._Shop_pages_overview_5
    • Cart Totals.

      Multipurpose_Website_Templates._Shop_pages_overview_6
  • To modify the Checkout page, please edit the shop-checkout.html. Checkout page is used for gathering customer and payment information. You can check the following screenshot to see the way this page looks in Multipurpose Website templates:

    Multipurpose_Website_Templates._Shop_pages_overview_7
  • Feel free to check the detailed video tutorial below:

    Multipurpose Website Templates. Shop pages overview
    This entry was posted in JS Animated tutorials and tagged JS Animated, multipurpose, overview, products, shop. Bookmark the permalink.

    Submit a ticket

    If you are still unable to find a sufficient tutorial regarding your issue please use the following link to submit a request to our technical support team. We'll provide you with our help and assistance within next 24 hours: Submit a ticket