Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script type="text/javascript">
- $(document).ready(function(){
- setTimeout(function(){
- var els=document.getElementsByClassName('js-product-edition-option[data-view-type=select]');var els=document.getElementsByClassName('js-product-edition-option[data-view-type=select]');var els=document.getElementsByClassName('js-product-edition-option[data-view-type=select]');
- Array.prototype.forEach.call(els, function(el) {
- if (el.firstChild){
- var i=el.firstChild.childNodes[3].innerText.toString();
- var s=i.split(' ');
- var e=el.previousElementSibling;
- var p=e.getElementsByClassName("js-product-price")[0];
- p.textContent=s[2];
- }
- });
- }, 2000);
- });
- </script>
- <script>
- $(document).ready(function(){
- setTimeout(function(){
- var divsToHide = document.getElementsByClassName("js-product-edition-option[data-view-type=select]"); //divsToHide is an array
- for(var i = 0; i < divsToHide.length; i++){
- divsToHide[i].style.visibility = "hidden"; // or
- divsToHide[i].style.display = "none"; // depending on what you're doing
- }
- window.tcart__product__plus=function(thiss) {
- var el = thiss.closest(".t706__product");
- var i = el.attr("data-cart-product-i");
- if (window.tcart.products[i] || (tcart__syncProductsObject__LStoObj(), null != window.tcart.products[i])) {
- if (window.tcart.products[i].quantity > 0 && void 0 !== window.tcart.products[i].inv && window.tcart.products[i].inv > 0 && window.tcart.products[i].inv == window.tcart.products[i].quantity) {
- alert(tcart__dict(13, "Sorry, ÷limit reached, this is the maximum quantity of goods in stock"));
- } else {
- window.tcart.products[i].quantity++;
- if(typeof(window.tcart.products[i].options) != 'undefined'){
- var newPrice=0;
- if(window.tcart.products[i].quantity > 10){
- newPrice=window.tcart.products[i].options[3].variant.split(" ")[0]*1;
- }
- else if(window.tcart.products[i].quantity > 7){
- newPrice=window.tcart.products[i].options[2].variant.split(" ")[0]*1;
- }
- else if(window.tcart.products[i].quantity > 2){
- newPrice=window.tcart.products[i].options[1].variant.split(" ")[0]*1;
- }
- else{
- console.log(window.tcart.products[i].options[0].variant.split(" "));
- newPrice=window.tcart.products[i].options[0].variant.split(" ")[0]*1;
- }
- newPrice=Number(newPrice.toFixed(1));
- window.tcart.products[i].price=newPrice;
- }
- window.tcart.products[i].amount = window.tcart.products[i].price * window.tcart.products[i].quantity;
- window.tcart.products[i].amount = tcart__roundPrice(window.tcart.products[i].amount);
- el.find(".t706__product-quantity").html(window.tcart.products[i].quantity);
- if ("y" === window.tcart.products[i].single && void 0 !== window.tcart.products[i].portion) {
- el.find(".t706__product-portion").html(tcart__showWeight(window.tcart.products[i].quantity * window.tcart.products[i].portion, window.tcart.products[i].unit));
- }
- if (window.tcart.products[i].amount > 0) {
- el.find(".t706__product-amount").html(tcart__showPrice(window.tcart.products[i].amount));
- } else {
- el.find(".t706__product-amount").html("");
- }
- tcart__updateTotalProductsinCartObj();
- $(".t706__carticon-counter").html(window.tcart.total);
- tcart__reDrawTotal();
- tcart__saveLocalObj();
- }
- }
- };
- window.tcart__product__minus=function(thiss) {
- var el = thiss.closest(".t706__product");
- var i = el.attr("data-cart-product-i");
- if (window.tcart.products[i] || (tcart__syncProductsObject__LStoObj(), null != window.tcart.products[i])) {
- if (window.tcart.products[i].quantity > 0) {
- window.tcart.products[i].quantity--;
- }
- if(typeof(window.tcart.products[i].options) != 'undefined'){
- var newPrice=0;
- if(window.tcart.products[i].quantity <=2){
- newPrice=window.tcart.products[i].options[0].variant.split(" ")[0]*1;
- }
- else if(window.tcart.products[i].quantity <=6){
- newPrice=window.tcart.products[i].options[1].variant.split(" ")[0]*1;
- }
- else if(window.tcart.products[i].quantity <=10){
- newPrice=window.tcart.products[i].options[2].variant.split(" ")[0]*1;
- }
- else{
- newPrice=window.tcart.products[i].options[3].variant.split(" ")[0]*1;
- }
- newPrice=Number(newPrice.toFixed(1));
- window.tcart.products[i].price=newPrice;
- }
- window.tcart.products[i].amount = tcart__roundPrice(window.tcart.products[i].price * window.tcart.products[i].quantity);
- if (window.tcart.products[i].amount > 0) {
- el.find(".t706__product-amount").html(tcart__showPrice(window.tcart.products[i].amount));
- }
- if (0 == window.tcart.products[i].quantity) {
- tcart__product__del(thiss);
- }
- if (window.tcart.products[i].amount > 0 && "y" === window.tcart.products[i].single && void 0 !== window.tcart.products[i].portion) {
- el.find(".t706__product-portion").html(tcart__showWeight(window.tcart.products[i].quantity * window.tcart.products[i].portion, window.tcart.products[i].unit));
- }
- el.find(".t706__product-quantity").html(window.tcart.products[i].quantity);
- tcart__updateTotalProductsinCartObj();
- $(".t706__carticon-counter").html(window.tcart.total);
- tcart__reDrawTotal();
- tcart__saveLocalObj();
- }
- }
- ;
- window.tcart__product__updateQuantity=function(thiss, el, i, qnt) {
- if (qnt > 0) {
- if (void 0 !== window.tcart.products[i].inv && window.tcart.products[i].inv > 0 && qnt > window.tcart.products[i].inv) {
- alert(tcart__dict(13, "Sorry, limit reached, this is the maximum quantity of goods in stock"));
- qnt = window.tcart.products[i].inv;
- }
- window.tcart.products[i].quantity = qnt;
- if(typeof(window.tcart.products[i].options) != 'undefined'){
- var newPrice=0;
- if(window.tcart.products[i].quantity > 10){
- newPrice=window.tcart.products[i].options[3].variant.split(" ")[0]*1;
- }
- else if(window.tcart.products[i].quantity > 6){
- newPrice=window.tcart.products[i].options[2].variant.split(" ")[0]*1;
- }
- else if(window.tcart.products[i].quantity > 2){
- newPrice=window.tcart.products[i].options[1].variant.split(" ")[0]*1;
- }
- else{
- newPrice=window.tcart.products[i].options[0].variant.split(" ")[0]*1;
- }
- newPrice=Number(newPrice.toFixed(1));
- window.tcart.products[i].price=newPrice;
- }
- window.tcart.products[i].amount = window.tcart.products[i].price * window.tcart.products[i].quantity;
- window.tcart.products[i].amount = tcart__roundPrice(window.tcart.products[i].amount);
- el.find(".t706__product-quantity").html(window.tcart.products[i].quantity);
- if ("y" === window.tcart.products[i].single && void 0 !== window.tcart.products[i].portion) {
- el.find(".t706__product-portion").html(tcart__showWeight(window.tcart.products[i].quantity * window.tcart.products[i].portion, window.tcart.products[i].unit));
- }
- if (window.tcart.products[i].amount > 0) {
- el.find(".t706__product-amount").html(tcart__showPrice(window.tcart.products[i].amount));
- } else {
- el.find(".t706__product-amount").html("");
- }
- } else {
- tcart__product__del(thiss);
- }
- tcart__updateTotalProductsinCartObj();
- $(".t706__carticon-counter").html(window.tcart.total);
- tcart__reDrawTotal();
- tcart__saveLocalObj();
- if (0 == qnt) {
- tcart__reDrawProducts();
- }
- };
- window.tcart__updateTotalProductsinCartObj=function() {
- var obj=window.tcart['products'];
- if(obj.length>0){
- var total=0;
- var prodamount=0;
- $.each(obj, function( index, product ) {
- if(typeof(product['options']) != 'undefined'){
- if(product['quantity'] >10){
- total=total+product['quantity']*1;
- total=Number(total.toFixed(1));
- product['amount']=product['quantity']*product['options'][3].variant.split(" ")[0]*1;
- prodamount=prodamount*1+product['amount']*1;
- }
- else if(product['quantity'] >6){
- total=total+product['quantity']*1;
- total=Number(total.toFixed(1));
- product['amount']=product['quantity']*product['options'][2].variant.split(" ")[0]*1;
- prodamount=prodamount*1+product['amount']*1;
- }
- else if(product['quantity'] >2){
- total=total+product['quantity']*1;
- total=Number(total.toFixed(1));
- product['amount']=product['quantity']*product['options'][1].variant.split(" ")[0]*1;
- prodamount=prodamount*1+product['amount']*1;
- }
- else{
- total=total+product['quantity']*1;
- total=Number(total.toFixed(1));
- product['amount']=product['quantity']*product['options'][0].variant.split(" ")[0] *1;
- prodamount=prodamount*1+product['amount']*1;
- }
- }else{
- total=total+product['quantity']*1;
- total=Number(total.toFixed(1));
- prodamount=prodamount*1+product['amount']*1;
- }
- });
- prodamount = tcart__roundPrice(prodamount);
- window.tcart['total']=total;
- window.tcart['prodamount']=prodamount;
- var amount = prodamount;
- if(typeof window.tcart.promocode == 'object' && typeof window.tcart.promocode.promocode!='undefined' && window.tcart.promocode.promocode!=''){
- var discountsum=0;
- if( typeof window.tcart.promocode.discountsum!='undefined' && window.tcart.promocode.discountsum>0){
- discountsum = window.tcart.promocode.discountsum*1;
- }else if( typeof window.tcart.promocode.discountpercent!='undefined' && window.tcart.promocode.discountpercent>0){;
- discountsum = tcart__roundPrice( amount * window.tcart.promocode.discountpercent*1/100 );
- }else{
- console.log('Cart Some error.');
- }
- amount = amount - discountsum;
- amount = tcart__roundPrice(amount);
- if(amount<0){amount=0;}
- window.tcart['prodamount_discountsum'] = discountsum;
- window.tcart['prodamount_withdiscount'] = amount;
- }
- if(typeof window.tcart.delivery=='object' && typeof window.tcart.delivery.price!='undefined' && window.tcart.delivery.price>0 && window.tcart.prodamount>0){
- if(typeof window.tcart.delivery.freedl!='undefined' && window.tcart.delivery.freedl>0 && amount>=window.tcart.delivery.freedl){
- }else{
- amount = amount + window.tcart.delivery.price*1;
- }
- }
- if(amount>0){
- amount=tcart__roundPrice(amount);
- }
- window.tcart['amount'] = amount;
- }else{
- window.tcart['total']=0;
- window.tcart['prodamount']=0;
- window.tcart['amount']=0;
- }
- };
- window.tcart__addProduct=function(productObj) {
- var ts = Math.floor(Date.now() / 1e3);
- tcart__syncProductsObject__LStoObj();
- var obj = window.tcart.products,
- flag_incart = "";
- obj.length > 0 &&
- $.each(obj, function (index, product) {
- var eq_options = "y",
- eq_sku = "";
- if ("y" == window.tcart_oneproduct) {
- if (product.name == productObj.name ) {
- if (null == product.options && null == productObj.options && null == product.sku && null == productObj.sku) return (flag_incart = "yes"), !1;
- if (null == product.options && null == productObj.options && null != product.sku && null != productObj.sku && product.sku == productObj.sku) return (flag_incart = "yes"), !1;
- if (
- "object" == typeof product.options &&
- "object" == typeof productObj.options &&
- ($.each(product.options, function (index, option) {
- if ("object" == typeof option && "object" == typeof productObj.options[index]) {
- if (option.option !== productObj.options[index].option || option.variant !== productObj.options[index].variant || option.price !== productObj.options[index].price) return (eq_options = !1);
- } else if (null == option || null == productObj.options[index]) return (eq_options = !1);
- }),
- product.sku === productObj.sku && (eq_sku = "y"),
- "y" === eq_options && "y" === eq_sku)
- )
- return (
- parseInt(window.tcart.products[index].quantity, 10) === parseInt(productObj.inv, 10) && alert(tcart__dict(13, "Sorry, limit reached, this is the maximum quantity of goods in stock")), (flag_incart = "yes"), !1
- );
- }
- } else if (
- product.name == productObj.name &&
- product.portion == productObj.portion &&
- product.single == productObj.single &&
- ("object" == typeof product.options &&
- "object" == typeof productObj.options &&
- $.each(product.options, function (index, option) {
- if ("object" == typeof option && "object" == typeof productObj.options[index]) {
- if (option.option !== productObj.options[index].option || option.variant !== productObj.options[index].variant || option.price !== productObj.options[index].price) return (eq_options = !1);
- } else if (void 0 === option || void 0 === productObj.options[index]) return (eq_options = !1);
- }),
- product.sku === productObj.sku && (eq_sku = "y"),
- "y" === eq_options && "y" === eq_sku)
- ) {
- var inv = parseInt(productObj.inv, 10),
- quantity = 1,
- curInCart = parseInt(window.tcart.products[index].quantity, 10);
- return curInCart === inv
- ? (alert(tcart__dict(13, "Sorry, limit reached, this is the maximum quantity of goods in stock")), (flag_incart = "yes"), !1)
- : (void 0 !== productObj.quantity
- ? curInCart + quantity > inv
- ? (alert(tcart__dict(13, "Sorry, limit reached, this is the maximum quantity of goods in stock")), (flag_incart = "yes"), (window.tcart.products[index].quantity = inv))
- : (window.tcart.products[index].quantity += quantity)
- : window.tcart.products[index].quantity=window.tcart.products[index].quantity+1,
- (window.tcart.products[index].amount = window.tcart.products[index].price * window.tcart.products[index].quantity),
- (window.tcart.products[index].amount = tcart__roundPrice(window.tcart.products[index].amount)),
- (window.tcart.products[index].ts = ts),
- (flag_incart = "yes"),
- !1);
- }
- }),
- "" == flag_incart &&
- (void 0 === productObj.quantity ? ((productObj.quantity = 1), (productObj.amount = productObj.price*productObj.quantity)) : (productObj.amount = tcart__roundPrice(productObj.price * productObj.quantity)),
- (productObj.ts = ts),
- window.tcart.products.push(productObj)),
- tcart__updateTotalProductsinCartObj(),
- tcart__reDrawCartIcon(),
- tcart__saveLocalObj(),
- "yes" == $(".t706").attr("data-opencart-onorder")
- ? setTimeout(function () {
- tcart__openCart();
- }, 10)
- : ($(".t706__carticon").addClass("t706__carticon_neworder"),
- setTimeout(function () {
- $(".t706__carticon").removeClass("t706__carticon_neworder");
- }, 2e3));
- };
- window.t_prod__updatePrice=function(t, r) {
- var i = 0,
- d = 0,
- a = r.find(".js-product-price"),
- e = a.attr("data-product-price-def");
- if (
- ((e *= 1),
- r.find(".js-product-option-variants").each(function () {
- var t = $(this),
- r = t.find("option:selected").attr("data-product-variant-price");
- if (void 0 !== r && "" != r) {
- var i = t_prod__cleanPrice(r);
- r.indexOf("+") > -1 ? (d += i) : 0 !== parseFloat(i) && (e = i);
- }
- }),
- (i += e + d),
- i > 0)
- )
- a.html(t_prod__showPrice(t_prod__roundPrice(i)));
- else {
- var n = a.attr("data-product-price-def-str");
- a.html(n);
- }
- var els=document.getElementsByClassName('js-product-edition-option[data-view-type=select]');
- Array.prototype.forEach.call(els, function(el) {
- if (el.firstChild){
- var i=el.firstChild.childNodes[3].innerText.toString();
- var s=i.split(' ');
- var e=el.previousElementSibling;
- var p=e.getElementsByClassName("js-product-price")[0];
- p.textContent=s[2];
- }
- });
- };
- }, 2000);
- });
- </script>
Add Comment
Please, Sign In to add comment