├── screenshot.png ├── assets ├── img │ ├── close.png │ ├── next.png │ ├── prev.png │ ├── loading.gif │ ├── thumb1.png │ ├── thumb2.png │ ├── thumb3.png │ └── icons │ │ ├── 1col.png │ │ ├── 2cl.png │ │ ├── 2cr.png │ │ ├── logo.png │ │ ├── visa.png │ │ ├── bg-01.jpg │ │ ├── express.png │ │ ├── favicon.png │ │ ├── paypal.png │ │ ├── discover.png │ │ ├── mastercard.png │ │ ├── video-16-9.jpg │ │ ├── icon-header-01.png │ │ ├── icon-header-02.png │ │ └── icon-position-map.png ├── fonts │ ├── ionicons.eot │ ├── ionicons.ttf │ ├── themify.eot │ ├── themify.ttf │ ├── themify.woff │ ├── FontAwesome.otf │ ├── ionicons.woff │ ├── ElegantIcons.eot │ ├── ElegantIcons.ttf │ ├── ElegantIcons.woff │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── poppins │ │ ├── Poppins-Black.ttf │ │ ├── Poppins-Bold.ttf │ │ ├── Poppins-Light.ttf │ │ ├── Poppins-Thin.ttf │ │ ├── Poppins-Italic.ttf │ │ ├── Poppins-Medium.ttf │ │ ├── Poppins-Regular.ttf │ │ ├── Poppins-BoldItalic.ttf │ │ ├── Poppins-ExtraBold.ttf │ │ ├── Poppins-ExtraLight.ttf │ │ ├── Poppins-SemiBold.ttf │ │ ├── Poppins-ThinItalic.ttf │ │ ├── Poppins-BlackItalic.ttf │ │ ├── Poppins-LightItalic.ttf │ │ ├── Poppins-MediumItalic.ttf │ │ ├── Poppins-ExtraBoldItalic.ttf │ │ ├── Poppins-SemiBoldItalic.ttf │ │ └── Poppins-ExtraLightItalic.ttf │ ├── montserrat │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-Thin.ttf │ │ ├── Montserrat-Black.ttf │ │ ├── Montserrat-Italic.ttf │ │ ├── Montserrat-Light.ttf │ │ ├── Montserrat-Medium.ttf │ │ ├── Montserrat-ExtraBold.ttf │ │ ├── Montserrat-Regular.ttf │ │ ├── Montserrat-SemiBold.ttf │ │ ├── Montserrat-BlackItalic.ttf │ │ ├── Montserrat-BoldItalic.ttf │ │ ├── Montserrat-ExtraLight.ttf │ │ ├── Montserrat-LightItalic.ttf │ │ ├── Montserrat-ThinItalic.ttf │ │ ├── Montserrat-MediumItalic.ttf │ │ ├── Montserrat-SemiBoldItalic.ttf │ │ ├── Montserrat-ExtraBoldItalic.ttf │ │ ├── Montserrat-ExtraLightItalic.ttf │ │ └── OFL.txt │ └── Linearicons-Free-v1.0.0 │ │ └── WebFont │ │ ├── Linearicons-Free.eot │ │ ├── Linearicons-Free.ttf │ │ ├── Linearicons-Free.woff │ │ └── Linearicons-Free.woff2 ├── css │ ├── admin-style.css │ ├── common.css │ └── elementor-default-element-style.css └── js │ ├── fashe_admin.js │ ├── fashe-elementor-notice.js │ ├── woo-custom.js │ └── animsition.min.js ├── .gitmodules ├── template-builder.php ├── .gitignore ├── 404.php ├── Doc.txt ├── sidebar.php ├── sidebar-woo.php ├── inc ├── customizer │ ├── js │ │ ├── customizer-preview.js │ │ └── customizer.js │ ├── fields │ │ └── sections.php │ └── customizer.php ├── class-epsilon-dashboard-autoloader.php ├── wp_bootstrap_pagination.php ├── hooks │ └── hooks.php ├── fashe-widgets-reg.php ├── libraries │ └── class-epsilon-init-notify-system.php ├── classes │ └── Class-Enqueue.php ├── support-functions.php ├── fashe-woo-functions.php └── fashe-commoncss.php ├── footer.php ├── searchform.php ├── header.php ├── templates ├── content-page.php ├── biography.php ├── footer-bottom.php ├── pagination.php ├── footer-widgets.php ├── content.php ├── header-bottom.php ├── content-audio.php ├── content-video.php ├── content-none.php ├── content-single.php └── 404.php ├── woocommerce ├── loop │ ├── loop-end.php │ ├── loop-start.php │ ├── rating.php │ ├── price.php │ ├── add-to-cart.php │ ├── result-count.php │ └── orderby.php ├── single-product │ ├── title.php │ ├── price.php │ ├── tabs │ │ ├── description.php │ │ ├── additional-information.php │ │ └── tabs.php │ ├── short-description.php │ ├── related.php │ ├── product-thumbnails.php │ ├── meta.php │ ├── product-image.php │ └── add-to-cart │ │ ├── simple.php │ │ └── variable.php ├── cart │ ├── proceed-to-checkout-button.php │ ├── cart-item-data.php │ ├── cross-sells.php │ ├── mini-cart.php │ └── cart-totals.php ├── checkout │ ├── cart-errors.php │ ├── form-login.php │ ├── terms.php │ ├── order-receipt.php │ ├── form-coupon.php │ ├── payment-method.php │ ├── form-checkout.php │ ├── form-shipping.php │ ├── form-billing.php │ ├── payment.php │ ├── thankyou.php │ ├── form-pay.php │ └── review-order.php ├── product-searchform.php ├── global │ └── quantity-input.php ├── content-single-product.php └── content-product.php ├── style.css ├── woocommerce.php ├── page.php ├── single.php ├── archive.php ├── index.php ├── search.php ├── comments.php ├── functions.php └── readme.txt /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/screenshot.png -------------------------------------------------------------------------------- /assets/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/close.png -------------------------------------------------------------------------------- /assets/img/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/next.png -------------------------------------------------------------------------------- /assets/img/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/prev.png -------------------------------------------------------------------------------- /assets/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/loading.gif -------------------------------------------------------------------------------- /assets/img/thumb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/thumb1.png -------------------------------------------------------------------------------- /assets/img/thumb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/thumb2.png -------------------------------------------------------------------------------- /assets/img/thumb3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/thumb3.png -------------------------------------------------------------------------------- /assets/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/ionicons.eot -------------------------------------------------------------------------------- /assets/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/ionicons.ttf -------------------------------------------------------------------------------- /assets/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/themify.eot -------------------------------------------------------------------------------- /assets/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/themify.ttf -------------------------------------------------------------------------------- /assets/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/themify.woff -------------------------------------------------------------------------------- /assets/img/icons/1col.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/icons/1col.png -------------------------------------------------------------------------------- /assets/img/icons/2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/icons/2cl.png -------------------------------------------------------------------------------- /assets/img/icons/2cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/icons/2cr.png -------------------------------------------------------------------------------- /assets/img/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/icons/logo.png -------------------------------------------------------------------------------- /assets/img/icons/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/icons/visa.png -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/ionicons.woff -------------------------------------------------------------------------------- /assets/img/icons/bg-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/icons/bg-01.jpg -------------------------------------------------------------------------------- /assets/img/icons/express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/icons/express.png -------------------------------------------------------------------------------- /assets/img/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/icons/favicon.png -------------------------------------------------------------------------------- /assets/img/icons/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/icons/paypal.png -------------------------------------------------------------------------------- /assets/fonts/ElegantIcons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/ElegantIcons.eot -------------------------------------------------------------------------------- /assets/fonts/ElegantIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/ElegantIcons.ttf -------------------------------------------------------------------------------- /assets/fonts/ElegantIcons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/ElegantIcons.woff -------------------------------------------------------------------------------- /assets/img/icons/discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/icons/discover.png -------------------------------------------------------------------------------- /assets/img/icons/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/icons/mastercard.png -------------------------------------------------------------------------------- /assets/img/icons/video-16-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/icons/video-16-9.jpg -------------------------------------------------------------------------------- /assets/img/icons/icon-header-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/icons/icon-header-01.png -------------------------------------------------------------------------------- /assets/img/icons/icon-header-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/icons/icon-header-02.png -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/poppins/Poppins-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/poppins/Poppins-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/poppins/Poppins-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/poppins/Poppins-Thin.ttf -------------------------------------------------------------------------------- /assets/img/icons/icon-position-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/img/icons/icon-position-map.png -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/poppins/Poppins-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/poppins/Poppins-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/poppins/Poppins-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/montserrat/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/montserrat/Montserrat-Thin.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/poppins/Poppins-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/poppins/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/poppins/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/poppins/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/poppins/Poppins-ThinItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/montserrat/Montserrat-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/montserrat/Montserrat-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/montserrat/Montserrat-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/montserrat/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/poppins/Poppins-BlackItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/poppins/Poppins-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/poppins/Poppins-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/montserrat/Montserrat-ExtraBold.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/montserrat/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/montserrat/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/poppins/Poppins-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/poppins/Poppins-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/montserrat/Montserrat-BlackItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/montserrat/Montserrat-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/montserrat/Montserrat-ExtraLight.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/montserrat/Montserrat-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/montserrat/Montserrat-ThinItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/poppins/Poppins-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/poppins/Poppins-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/montserrat/Montserrat-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/montserrat/Montserrat-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /assets/css/admin-style.css: -------------------------------------------------------------------------------- 1 | 2 | .epsilon-plugin-box{ 3 | margin-right: 1% !important; 4 | } 5 | 6 | .dashicons-admin-tools:before{ 7 | content: "\f102"; 8 | } -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/montserrat/Montserrat-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/Montserrat-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/montserrat/Montserrat-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.eot -------------------------------------------------------------------------------- /assets/fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.ttf -------------------------------------------------------------------------------- /assets/fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.woff -------------------------------------------------------------------------------- /assets/fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/fashe-wp/master/assets/fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.woff2 -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "inc/libraries/epsilon-theme-dashboard"] 2 | path = inc/libraries/epsilon-theme-dashboard 3 | url = https://github.com/MachoThemes/epsilon-theme-dashboard 4 | [submodule "inc/libraries/epsilon-framework"] 5 | path = inc/libraries/epsilon-framework 6 | url = https://github.com/MachoThemes/epsilon-framework 7 | -------------------------------------------------------------------------------- /template-builder.php: -------------------------------------------------------------------------------- 1 | customize -> Theme options 3 | 4 | 2. How to show footer widget 5 | Go to -> customize -> Theme options -> Footer -> Footer Widget On/Off 6 | 7 | 3. How to set footer payment method image 8 | 9 | Go to -> customize -> Theme options -> Footer -> Footer Payment Method 10 | 11 | 4. How to set social media 12 | Go to -> Appearance -> Menus -> custom links -> set menu label and social media link . 13 | 14 | Set Menu settings 15 | Menu Settings -> Social Menu 16 | 17 | Follow this screenshot 18 | http://prntscr.com/k3kzbk 19 | -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- 1 |
'; 20 | } 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /sidebar-woo.php: -------------------------------------------------------------------------------- 1 | '; 20 | } 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /inc/customizer/js/customizer-preview.js: -------------------------------------------------------------------------------- 1 | (function( $ ){ 2 | 3 | 4 | // Update back to top in real time... 5 | wp.customize( 'fashe-gototop-toggle-settings', function( value ) { 6 | value.bind( function( toggle ) { 7 | 8 | $( '.btn-back-to-top' ).toggle(); 9 | 10 | } ); 11 | 12 | } ); 13 | 14 | // Update cart icon in real time... 15 | wp.customize( 'fashe-cart-toggle-settings', function( value ) { 16 | value.bind( function( newval ) { 17 | 18 | $( '.header-wrapicon2' ).toggle(); 19 | 20 | } ); 21 | } ); 22 | 23 | })( jQuery ); -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 32 |