LOJA

01- CRIAÇÃO DA LOJA

https://combodinheiroinfinito.site/wp-content/uploads/2026/03/criando-a-loja.mp4

02- FOTO DE PERFIL E CAPA

https://combodinheiroinfinito.site/wp-content/uploads/2026/03/Area-de-Membros-Kirvano-Kirvano.mp4

03- NOME E DESCRIÇÃO

https://combodinheiroinfinito.site/wp-content/uploads/2026/03/Area-de-Membros-Kirvano-Kirvano-1.mp4

04- GATEWAY E PAGAMENTOS

https://combodinheiroinfinito.site/wp-content/uploads/2026/03/Area_de_Membros___Kirvano___Kirvano.mp4

05- ADICIONANDO PRODUTOS

https://combodinheiroinfinito.site/wp-content/uploads/2026/03/Area_de_Membros___Kirvano___Kirvano-1.mp4

06- CORES E ADICIONAIS

https://combodinheiroinfinito.site/wp-content/uploads/2026/03/Area_de_Membros___Kirvano___Kirvano-2.mp4

07- SUPORTE E REDES SOCIAIS

https://combodinheiroinfinito.site/wp-content/uploads/2026/03/Area_de_Membros___Kirvano___Kirvano-3.mp4

08- NOTIFICAÇÕES DE VENDAS

https://combodinheiroinfinito.site/wp-content/uploads/2026/03/Area_de_Membros___Kirvano___Kirvano-4.mp4

CÓDIGO DE DESIGN DA LOJA:

Jss:

/* Script para INJETAR o Tema na Ereemby (Com Radar de Página) */
(function() {
function injetarTema() {
if (document.getElementById(‘tema-gerado-apx’)) return;

if(!document.querySelector(‘link[href*=”fontawesome”]’)) {
const fa = document.createElement(‘link’);
fa.rel = ‘stylesheet’;
fa.href = ‘https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css’;
document.head.appendChild(fa);
}

const htmlDoPainel = <div id=”tema-gerado-apx”>
<div>
<div>
<div>
<h1>Sua experiência gamer, elevada a <span>outro nível</span>.</h1>
<p>Seu fornecedor de confiança para assinaturas e produtos digitais com os melhores preços.</p>
<div>
<a href=”https://wa.me/5511999999999″>Suporte WhatsApp</a>
<a href=”https://discord.gg/…”>Comunidade</a>
</div>
</div>
<div>
<div>
<div><i></i></div>
<h3>Painel de Controle</h3>
</div>
<div>
<a href=”#”>
<i></i>
<h4>Ver Produtos</h4>
<p>Explore o catálogo</p>
</a>
<a href=”https://instagram.com/…”>
<i></i>
<h4>Instagram</h4>
<p>Siga nossas novidades!</p>
</a>
<a href=”#”>
<i></i>
<h4>Meus Pedidos</h4>
<p>Acompanhe compras</p>
</a>
<a href=”#”>
<i></i>
<h4>Afiliados</h4>
<p>Ganhe comissões!</p>
</a>
</div>
</div>
</div>
</div>
</div>;

let navBar = document.querySelector(‘header’) || document.querySelector(‘nav’);

if (!navBar) {
let search = document.querySelector(‘input[type=”search”]’) document.querySelector(‘input[placeholder*=”produto” i]’) document.querySelector(‘input[placeholder*=”pesquisar” i]’);
if (search) {
navBar = search.closest(‘div[class*=”header”]’) || search.parentElement.parentElement.parentElement;
}
}

if (navBar) {
navBar.insertAdjacentHTML(‘afterend’, htmlDoPainel);
} else {
const root = document.querySelector(‘#__next’) || document.body;
if (root.children.length > 0) {
root.children[0].insertAdjacentHTML(‘afterend’, htmlDoPainel);
} else {
root.insertAdjacentHTML(‘afterbegin’, htmlDoPainel);
}
}
}

function gerenciarVisibilidade() {const isHome = (window.location.pathname === ‘/’ || window.location.pathname === ‘/index.html’);
let tema = document.getElementById(‘tema-gerado-apx’);

if (isHome) {
if (!tema) {
injetarTema();
} else {
tema.style.display = ”;
}
} else {
if (tema) {
tema.style.display = ‘none’;
}
}
}

setInterval(gerenciarVisibilidade, 500);
gerenciarVisibilidade();
})();