The template folder Swiftcart is available inside the downloaded zip file. Need to unzip the zip file to find the template also the documentation folder.

The files and folders structure is similar to the following:

  1. assets/css — folder with CSS files.
  2. assets/inc — folder with mail files.
  3. assets/img — folder with image files.
  4. assets/js — folder with Javascript files.
  5. assets/sass — folder with SCSS files.
  6. assets/vendors — folder with vendors files.

Upload the template files to the server with the help of one of the FTP-clients like FileZilla.

Files Edit & Upload:

Individual pages can be customized by opening in a code editor such as VS Code. Once all the customization completed then to make the website live you need to upload the updated project files to the hosting server for your own domain. The files can be uploaded using FTP client such as FileZilla.

Followings are the css files which loaded inside the Head Section:


<!-- Package Css link -->
<link rel="stylesheet" href="assets/vendors/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/vendors/nice-select/css/nice-select.css">
<link rel="stylesheet" href="assets/vendors/fontawesome/css/all.min.css">
<link rel="stylesheet" href="assets/vendors/animate/animate.min.css">
<link rel="stylesheet" href="assets/vendors/meanmenu/css/meanmenu.css">
<link rel="stylesheet" href="assets/vendors/jarallax/jarallax.css">
<link rel="stylesheet" href="assets/vendors/jquery-magnific-popup/jquery.magnific-popup.css">
<link rel="stylesheet" href="/assets/vendors/swiftcart-icons/style.css">
<link rel="stylesheet" href="assets/vendors/owl-carousel/css/owl.carousel.min.css">
<link rel="stylesheet" href="assets/vendors/owl-carousel/css/owl.theme.default.min.css">
<link rel="stylesheet" href="assets/vendors/jquery-ui/jquery-ui.css">
<link rel="stylesheet" href="assets/vendors/glightbox/css/glightbox.min.css">
<link rel="stylesheet" href="assets/vendors/spacing/spacing.css">
<!-- template styles -->
<link rel="stylesheet" href="assets/css/swiftcart.css">

Followings are the JS files which loaded before the end of HEAD or BODY Section:.


    <script src="assets/vendors/jquery/jquery-3.7.0.min.js"></script>
    <script src="assets/vendors/bootstrap/js/bootstrap.bundle.min.js"></script>
    <script src="assets/vendors/nice-select/js/nice-select.js"></script>
    <script src="assets/vendors/wow/wow.js"></script>
    <script src="assets/vendors/meanmenu/js/meanmenu.js"></script>
    <script src="assets/vendors/jarallax/jarallax.min.js"></script>
    <script src="assets/vendors/jquery-ui/jquery-ui.js"></script>
    <script src="assets/vendors/jquery-ajaxchimp/jquery.ajaxchimp.min.js"></script>
    <script src="assets/vendors/jquery-appear/jquery.appear.min.js"></script>
    <script src="assets/vendors/jquery-circle-progress/jquery.circle-progress.min.js"></script>
    <script src="assets/vendors/jquery-magnific-popup/jquery.magnific-popup.min.js"></script>
    <script src="assets/vendors/jquery-validate/jquery.validate.min.js"></script>
    <script src="assets/vendors/nouislider/nouislider.min.js"></script>
    <script src="assets/vendors/tiny-slider/tiny-slider.js"></script>
    <script src="assets/vendors/wnumb/wNumb.min.js"></script>
    <script src="assets/vendors/owl-carousel/js/owl.carousel.min.js"></script>
    <script src="assets/vendors/swiper/js/swiper.min.js"></script>
    <script src="assets/vendors/imagesloaded/imagesloaded.min.js"></script>
    <script src="assets/vendors/isotope/isotope.js"></script>
    <script src="assets/vendors/countdown/countdown.min.js"></script>
    <script src="assets/vendors/jquery-circleType/jquery.circleType.js"></script>
    <script src="assets/vendors/jquery-lettering/jquery.lettering.min.js"></script>
    <script src="assets/vendors/ion.rangeSlider/ion.rangeSlider.min.js"></script>
    <script src="assets/vendors/jquery-ui/jquery-ui.js"></script>
    <script src="assets/vendors/glightbox/js/glightbox.min.js"></script>
    <script src="https://unpkg.com/splitting/dist/splitting.min.js"></script>
    <script src="https://unpkg.com/scroll-out/dist/scroll-out.min.js"></script>
    
    <!-- template js -->
    <script src="assets/js/swiftcart.js"></script>

The Swiftcart is a responsive template and is based on the Bootstrap Framework. For more information you can check the Bootstrap CSS.

The general template structure is the same throughout the template and each of the part is under a section with a section id name. Here is the general structure:


<!-- xc-breadcrumb area start -->
<div class="xc-breadcrumb__area base-bg">
    <div class="xc-breadcrumb__bg w-img xc-breadcrumb__overlay"></div>
        <div class="container">
            <div class="row">
                <div class="col-xxl-12">
                    <div class="xc-breadcrumb__content p-relative z-index-1">
                        <div class="xc-breadcrumb__list">
                            <span><a href="#">Home</a></span>
                            <span class="dvdr"><i class="icon-arrow-right">→</i></span>
                            <span>About</span>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
<!-- xc-breadcrumb area end -->  

Font code can be found in the "_var.sass" file path: assets/sass/utility/_var.sass


:root {
    --swiftcart-font: "Public Sans", sans-serif;
	--swiftcart-heading-font: "Inter", sans-serif;
	--swiftcart-special-font: 'Public Sans', sans-serif;
}

File path: assets/sass/utility/_var.sass


:root {
    --swiftcart-base: #127FFF;
	--swiftcart-base-rgb: #{toRGB(#127FFF)};
	--swiftcart-secondary: #EB001B;
	--swiftcart-secondary-rgb: #{toRGB(#EB001B)};
	--swiftcart-text: #757575;
	--swiftcart-text-rgb: #{toRGB(#757575)};
	--swiftcart-text-gray: #89868d;
	--swiftcart-text-gray-rgb: #{toRGB(#89868d)};
	--swiftcart-gray: #F3F3F4;
	--swiftcart-gray-rgb: #{toRGB(#F3F3F4)};
	--swiftcart-gray-2: #E8E8E8;
	--swiftcart-gray-2-rgb: #{toRGB(#E8E8E8)};
	--swiftcart-white: #fff;
	--swiftcart-white-rgb: #{toRGB(#fff)};
	--swiftcart-black: #1C1C1C;
	--swiftcart-black-2: #191C1F;
	--swiftcart-black-rgb: #{toRGB(#1C1C1C)};
	--swiftcart-black-2-rgb: #{toRGB(#191C1F)};
	--swiftcart-border-color: #DEE2E7;
	--swiftcart-border-color-rgb: #{toRGB(#DEE2E7)};
}

Please open the file Visual Studio Code Editor.

And following the video tutorial.

Here the Link: https://www.youtube.com/watch?v=0MWmv1Gvv5w

File path: assets/js/swiftcart.js



/*--------------------------------------------------
    Owl Carousel
---------------------------------------------------*/
function thmOwlInit() {
    // owl slider
    let swiftcartowlCarousel = $(".swiftcart-owl__carousel");
    if (swiftcartowlCarousel.length) {
      swiftcartowlCarousel.each(function () {
        let elm = $(this);
        let options = elm.data("owl-options");
        let thmOwlCarousel = elm.owlCarousel(
          "object" === typeof options ? options : JSON.parse(options)
        );
        elm.find("button").each(function () {
          $(this).attr("aria-label", "carousel button");
        });
      });
    }
    let swiftcartowlCarouselNav = $(".swiftcart-owl__carousel--custom-nav");
    if (swiftcartowlCarouselNav.length) {
      swiftcartowlCarouselNav.each(function () {
        let elm = $(this);
        let owlNavPrev = elm.data("owl-nav-prev");
        let owlNavNext = elm.data("owl-nav-next");
        $(owlNavPrev).on("click", function (e) {
          elm.trigger("prev.owl.carousel");
          e.preventDefault();
        });

        $(owlNavNext).on("click", function (e) {
          elm.trigger("next.owl.carousel");
          e.preventDefault();
        });
      });
    }
  }


More Info please browser the link: Owl Carousel Options

Please remove or comment the below code file path: assets/js/main.js



/*-----------------
    preloader
------------------*/
if ($(".xc-preloader").length) {
    $(".xc-preloader").fadeOut(500);
}


Also, please remove or comment the above code all HTML files



<!-- preloader area start -->
<div class="xc-preloader">
  <div class="xc-preloader__image">
    <img src="assets/img/preloader/preloader.png" alt="preloader">
  </div>
</div>
<!-- preloader area end -->



Please optimize all images KB, MB also, use the image size following by placeholder file path: assets/images/..

- Tinypng

Please minify all CSS file path: assets/css/..

- CSS Minifier

Please minify all JS file path: assets/js/..

- Javascript Minifier

Please go to the image file 'path: assets/img/...' replace the image which one you want following placeholder image size & name

You won't able to add new flaticon except existing but you can if you want to add from scratch but existing will not work and it's the feature of flaticon. Fontawesome.com

After a certain time, we will update our project based on the latest technology but in your template, you need to update on your own if you want.

Note: All images are used for preview purpose only and not included in the final purchase files.

Images from:
https://www.freepik.com/
https://pixabay.com/
https://unsplash.com/

Fonts:
Inter
Public Sans

IconFont
Fontawesome
Swiftcart Custom Icon