Clima color css (not complete)

.button {
background: #B6A39A;
border: #B6A39A;
}
.breadcrumb_content ul li {

color: #B6A39A;
}

.checkout_btn a {
background: #B6A39A;
}

.table_desc .cart_page table thead tr th {
border-bottom: 0px solid #B6A39A;
}
.btn-fill-out {
background: #B6A39A;
border: #B6A39A;
}
#scrollUp {
background: #B6A39A none repeat scroll 0 0;
}

.cart_button a:hover {
background: #B6A39A;
border-color: #B6A39A;
}

XML

2021 09 01

XML import  ~80k produnktu atnaujinimas kas 2-3 valanadas (verskis uz tai paprase 1k e ) http://kvepialilia.fronto.lt

 

 

2021 09 09

Klientas skambino labai stume ant verskis kaip ten blogai dirba su vibeXL 862023242

 

2021 09 13 – noretu importuoti prekes patis susiprogramuotu irk reiktų duoti priėga

 

2021 10 21 – visa prekyba xml import ir likuciu atnaujinimas
2021 10 22 – Importas xml ir csv Vardas: Raminta info@dekomus.lt

Porto color css

.btn-primary {
border-color: #ff324d;
background-color: #ff324d;
color: #fff;
box-shadow: none;
}
.menu>li:hover>a, .menu>li.show>a, .menu>li.active>a {
background-color: #ff324d;
color: #fff;
}
.menu>li>a {
color: #ff324d;
}
.widget-newsletter .btn:hover, .widget-newsletter .btn:focus {
background-color: #ff324d;
color: #fff;
}
.widget-newsletter .btn:hover, .widget-newsletter .btn:focus {
background-color: #ff324d;
color: #fff;
}
.widget-newsletter .btn {

border-color: #ff324d;
background-color: #ff324d;

}
.feature-box-simple i {

color: #ff324d;

}
.cart-dropdown .dropdown-toggle::before {
color: #ff324d;
}
.price_current {

color: #ff324d;
}
.btn-addtocart:hover, .btn-addtocart:focus {
border-color: #ff324d;
background-color: #ff324d;
color: #fff;
}
.product-single-share label {
color: #ff324d;
}
.social-icon {

background-color: #ff324d;

}
.btn-addtocart {
color: #ff324d;

}
.mobile-menu-toggler {
color: #ff324d;

}
.header-search .search-toggle {

color: #ff324d;

}
.nav.nav-tabs .nav-item.show .nav-link, .nav.nav-tabs .nav-item .nav-link.active {
border-bottom-color: #ff324d;
color: #ff324d;
}
.btn-remove:hover, .btn-remove:focus, .btn-edit:hover, .btn-edit:focus, .btn-move:hover, .btn-move:focus {
color: #ff324d;

}
.btn-remove, .btn-edit, .btn-move {
color: #ff324d;
}
.btn-fill-out {
background: #ff324d;
}
.custome-radio input[type=”radio”]+.form-check-label::after {

background-color: #ff324d;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
border-color: #ff324d;
background-color: #ff324d;
color: #282d3b;
}
.mobile-menu li.open>a, .mobile-menu li.active>a {
color: #ff324d;
}
.mobile-menu li a:hover, .mobile-menu li a:focus {
color: #ff324d;
text-decoration: none;
}

Užklausa del Atributų

isodos.lt – Prekės kaina nesiskirian nuo pasirinktų variantų delto daug liako susigaista kuriant produktus

http://deimantiniainamai.fronto.lt/produktai  -irgi norejo topaties nes vienas produktas gal 80 turi kombinaciju ir tiesiog keisti prie visu kaina nepatogu, kai nukopijuoja produktą

Smooth Gallery – product variants change foto

+ COLOR DIV (sita naudoti)

jQuery(document).ready(function() {
    "use strict";

    $(document).bind("change", '#variant_photo_url', function() {
        console.log("variant_photo_url changed");
        runInterval(5, 500)
    });
	
    $(document).bind("click", '.color_select_item_background', function() {
        console.log("variant_photo_url changed");
        runInterval(5, 500)
    });

	
	
	function runInterval(finish, timeout){
		var run=1
		let intervalId = setInterval(function(){ 
			
			update_variant_photo()
			
			if(run > finish - 1){
				update_variant_or_product_photo()
			}			
			if(run > finish){
				update_variant_or_product_photo()
			}
			
			if(run > finish){
				window.clearInterval(intervalId)
			}
			
			run++
		}, timeout);
	}

    function update_variant_photo(){

        const variant_photo_url = $('#variant_photo_url').val()
        console.log(variant_photo_url);

        if(variant_photo_url !== ""){
            console.log("variant_photo_url no empty");
			update_photo(variant_photo_url)
        }
    }

    function update_variant_or_product_photo(){
        const product_photo_url = $('#product_photo_url').val()
        const variant_photo_url = $('#variant_photo_url').val()

        if(variant_photo_url !== ""){
			update_photo(variant_photo_url)
        }
        else{
			update_photo(product_photo_url)
        }
    }
	
	function update_photo(photo_url){
		//$('.product_smooth_gallery .sp-current-big').attr('href', photo_url)
		//$('.product_smooth_gallery .sp-current-big img').attr('src', photo_url)
		
		$('.product_smooth_gallery .sp-large a').attr('href', photo_url)
		$('.product_smooth_gallery .sp-large a img').attr('src', photo_url)
		
	}
})

shopwise_fur2 product variants change foto

https://www.la-fa.lt/produktas/lforma-vytis

jQuery(document).ready(function() {
    "use strict";

    $(document).bind("change", '#variant_photo_url', function() {
        console.log("variant_photo_url changed");
        runInterval(5, 500)
    });
	
	function runInterval(finish, timeout){
		var run=1
		let intervalId = setInterval(function(){ 
			
			update_variant_photo()
			
			if(run > finish - 1){
				update_variant_or_product_photo()
			}			
			if(run > finish){
				update_variant_or_product_photo()
			}
			
			if(run > finish){
				window.clearInterval(intervalId)
			}
			
			run++
		}, timeout);
	}

    function update_variant_photo(){

        const variant_photo_url = $('#variant_photo_url').val()
        console.log(variant_photo_url);

        if(variant_photo_url !== ""){
            console.log("variant_photo_url no empty");
			update_photo(variant_photo_url)
        }
    }

    function update_variant_or_product_photo(){
        const product_photo_url = $('#product_photo_url').val()
        const variant_photo_url = $('#variant_photo_url').val()

        if(variant_photo_url !== ""){
			update_photo(variant_photo_url)
        }
        else{
			update_photo(product_photo_url)
        }
    }
	
	function update_photo(photo_url){
		$('#product_img').attr('src', photo_url)
		$('#product_img').attr('data-zoom-image', photo_url)
		$('.zoomWindowContainer div').css('background-image', 'url(' + photo_url + ')')
	}
})

shopwise autoresize gallery (nereikalingas, smooth gallery atlieka sia func)

$( document ).ready(function() {

	$('.product_gallery_item').on('click', function(){
		setTimeout(function(){
			const $img_box = $('.product_img_box')
			const img_box_height = parseInt( $img_box.css('height') ) - 16
			const img_box_width = parseInt( $img_box.css('width') ) - 16

			$('.zoomContainer').css('width', img_box_width)
			$('.zoomContainer').css('height', img_box_height)

			$('.zoomWindow').css('width', img_box_width)
			$('.zoomWindow').css('height', img_box_height)

		}, 200)
	})
	
})