console.log('Theme JS');
const miniBannersHome = `
Siga nossos canais oficiais:
` const textoNewsJS = `Ganhe 5% de desconto na primeira compraHorário de funcionamento: Segunda às sexta das 08h às 19h
` $( document ).ready(function() { setTimeout(function(){ /*MINI BANNERS*/ $('#s-categorias-blocos').before(miniBannersHome); /*MUDAR PRODUTOS EM DESTAQUE*/ if ($("#s-produtos-destaque").length > 0){ $('#s-produtos-destaque').insertAfter('#s-produtos-vendidos'); } /*BOTÃO PRODUTOS*/ if ($(".btn-grad.s-produtos-card-botao").length > 0){ $('.btn-grad.s-produtos-card-botao').append(setaBotaoProdutos); } /*CHAMADA NEWSLETTER*/ if ($("#s-newsletter").length > 0){ document.querySelector("#s-newsletter .s-newsletter .s-newsletter-texto").innerHTML = textoNewsJS; } /*TEXTO REDES SOCIAIS*/ if ($(".s-footer-social").length > 0){ $('#footer .s-footer .s-footer-social').prepend(siganosFooterJS); $('#footer .s-footer .s-footer-social').append(horariosJS); } /*CTA*/ if ($('#s-produtos-destaque').length > 0) { /*CTA 1 COL*/ $('#s-produtos-destaque').after(ctaHome1ColJS); } /*DEPOIMENTOS*/ if ($('#s-depoimentos-carousel').length > 0) { /*CHAMADA DEPOIMENTOS*/ document.querySelector("#s-depoimentos-carousel .s-depoimentos-titulo").innerHTML = depoimentosJS; /*ASPAS DEPOIMENTOS*/ $('#depoimentos-carousel .owl-stage-outer .owl-stage .owl-item .item .card .row').before(aspasDepoimentosJS); } if ($("#innerOrcamentoDetalhes").length > 0){ $('#innerOrcamentoDetalhes').insertAfter('#innerResumo'); } $('body').prepend(` `); }, 3000); })