Mantente al día con las noticias más relevantes del sector.

document.addEventListener(‘DOMContentLoaded’, () => { const searchContainer = document.querySelector(‘.search-container’); const searchInput = document.getElementById(‘search-filter’); const openBtn = document.querySelector(‘.search-icon .toggle-buttton’); const closeBtn = document.querySelector(‘.close-icon .toggle-buttton’); const openSearch = () => { if (searchContainer.classList.contains(‘open’)) return; // ya abierto searchContainer.classList.add(‘open’); requestAnimationFrame(() => searchInput.focus()); // foco tras repaint }; const closeSearch = () => { searchContainer.classList.remove(‘open’); searchInput.blur(); }; openBtn.addEventListener(‘click’, () => { searchContainer.classList.contains(‘open’) ? closeSearch() : openSearch(); }); closeBtn.addEventListener(‘click’, closeSearch); document.addEventListener(‘keydown’, (e) => { if (e.key === ‘Escape’) closeSearch(); }); }); document.addEventListener(‘DOMContentLoaded’, () => { const ajaxURL = ‘/wp-admin/admin-ajax.php’; const typePost = document.querySelector(‘.filter-config’).dataset.postType; const PAGE_ID = (document.body.className.match(/page-id-(\d+)/) || [])[1] || 0; const NONCE = »; const loops = {}; function togglePager(loopObj, show) { if (!loopObj.hasPager) return; loopObj.btn?.remove(); if (show) { loopObj.cfg.appendChild(loopObj.btn); } } document.querySelectorAll(‘.loop-config’).forEach(cfg => { const loopId = cfg.dataset.loopId; const wrapper = document.getElementById(loopId); if (!wrapper) return; const cardNode = wrapper.querySelector(‘[data-post-card-id]’); if (!cardNode) return; loops[loopId] = { wrapper, cfg, postCardId : cardNode.dataset.postCardId, page : 1, perPage : parseInt(cfg.dataset.itemsPerPage) || 9, tags : (cfg.dataset.tags || »).split(‘,’).map(t => t.trim()).filter(Boolean), tagsExclude : (cfg.dataset.tagsExclude || »).split(‘,’).map(t => t.trim()).filter(Boolean), hasPager : cfg.dataset.pagination === ‘true’, cat : ‘all’, term : » }; if (loops[loopId].hasPager) { const btn = document.createElement(‘button’); btn.type = ‘button’; btn.className = ‘load-more-btn’; btn.textContent = ‘Cargar más publicaciones’; cfg.appendChild(btn); loops[loopId].btn = btn; btn.addEventListener(‘click’, () => { loops[loopId].page++; fetchGrid(loopId, true); }); } }); const catButtons = document.querySelectorAll(‘.category-item’); const searchBtn = document.querySelector(‘.search-submit’); const searchInput = document.getElementById(‘search-filter’); const nav = document.querySelector(‘.filters-wrapper nav’); nav.addEventListener(‘click’, e => { const btn = e.target.closest(‘.category-item’); if (!btn) return; // no era un botón /* 1.a estado visual: solo uno activo */ nav.querySelectorAll(‘.category-item’).forEach(b => b.classList.remove(‘active’)); btn.classList.add(‘active’); /* 1.b dispara filtros globales */ const term = document.getElementById(‘search-filter’)?.value.trim() || »; window.applyFilters(btn.dataset.category, term); }); /* 2 ▸ expón applyFilters → accesible desde los clones posteriores */ window.applyFilters = function(cat, term){ Object.values(loops).forEach(l => { l.cat = cat; l.term = term; l.page = 1; togglePager(l, true); fetchGrid(l.wrapper.id); }); }; searchBtn?.addEventListener(‘click’, () => { const activeCat = document.querySelector(‘.category-item.active’)?.dataset.category || ‘all’; applyFilters(activeCat, searchInput.value.trim()); }); function applyFilters(cat, term) { Object.values(loops).forEach(l => { l.cat = cat; l.term = term; l.page = 1; fetchGrid(l.wrapper.id); }); } function fetchGrid(loopId, append = false) { const l = loops[loopId]; if (!l) return; const data = new FormData(); data.append(‘post_type’, typePost); data.append(‘action’, ‘bc_filter_post_cards’); if (NONCE) data.append(‘nonce’, NONCE); data.append(‘page_id’, PAGE_ID); data.append(‘postcard_id’, l.postCardId); data.append(‘cat’, l.cat); data.append(‘s’, l.term); data.append(‘tags’, l.tags.join(‘,’)); data.append(‘exclude_tags’, l.tagsExclude.join(‘,’)); data.append(‘posts_per_page’, l.perPage); data.append(‘paged’, l.page); fetch(ajaxURL, { method:’POST’, credentials:’same-origin’, body:data }) .then(r => r.json()) .then(json => { if (json.success) { const { html, has_more } = json.data; const tmp = document.createElement(‘div’); tmp.innerHTML = html; const ulNew = tmp.querySelector(‘.fusion-grid’); const liHTML = ulNew ? ulNew.innerHTML : tmp.innerHTML; const grid = l.wrapper.querySelector(‘.fusion-grid’); if (!grid) return; if (append) { grid.insertAdjacentHTML(‘beforeend’, liHTML); } else { grid.innerHTML = liHTML; } grid.querySelectorAll(‘li’).forEach(li => { li.dataset.postCardId = l.postCardId; }); if (!has_more) { togglePager(l, false); } else { togglePager(l, true); } if (window.FusionApp) { window.FusionApp.responsiveImages?.(grid); window.FusionApp.wowInit?.(grid); window.FusionApp.preloadImages?.(grid); } if (window.FusionEqualHeights?. _equalize) { window.FusionEqualHeights._equalize(l.wrapper); } } }) .catch(console.error); } Object.keys(loops).forEach(id => fetchGrid(id)); const cfg = document.querySelector(‘.filter-config’); if (!cfg) return; const postType = cfg.dataset.postType || ‘post’; const tagSlug = cfg.dataset.categoryFilterTag || »; const ajaxURLCat = ‘/wp-admin/admin-ajax.php’; const data = new FormData(); data.append(‘action’, ‘bc_get_filter_categories’); data.append(‘post_type’, postType); data.append(‘tag’, tagSlug); fetch(ajaxURLCat, { method:’POST’, credentials:’same-origin’, body:data }) .then(r => r.json()) .then(json => { if (!json.success) return; const nav = document.querySelector(‘.filters-wrapper nav’); const tplButton = nav.querySelector(‘.category-item’); json.data.forEach(({ slug, name }) => { if (nav.querySelector(`[data-category=»${slug}»]`)) return; const btn = tplButton.cloneNode(true); btn.classList.remove(‘active’); btn.dataset.category = slug; btn.dataset.filterActive = ‘false’; btn.querySelector(‘.text-button’).textContent = name; nav.appendChild(btn); }); window.catButtons = document.querySelectorAll(‘.category-item’); }) .catch(console.error); });

Lo más leído

  • pagos inmediatos credibanco

    Pagos Inmediatos

    Credibanco lanza solución para Pagos Inmediatos en Colombia

    Anticipándose a Bre-B, Credibanco lanza plataforma para transacciones instantáneas, ¡pagos en tiempo real!

    .image-post{ width: 100%; } .image-post img{ aspect-ratio: 324 / 232; width: 100%; object-fit: cover; object-position: center; } .category a[rel=»category tag»]{ font-weight: 600; line-height: 24px; } .text-desc p{ display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; text-overflow: ellipsis; overflow: hidden; } .text-desc{ margin-bottom: auto !important; } .meta-autor p{ font-weight: 600; color: #000; } .taxonomy-post-type p, .taxonomy-post-type a{ font-weight: 600 !important; color: #007572; pointer-events: none; }
  • bre-b y dock

    Pagos Inmediatos

    Credibanco se une a Dock para competir en el ecosistema de Pagos Inmediatos Bre-B

    Credibanco y Dock se unen para competir en pagos inmediatos Bre-B en Colombia, fortaleciendo su oferta tecnológica y gestionando transacciones en tiempo real.

    .image-post{ width: 100%; } .image-post img{ aspect-ratio: 324 / 232; width: 100%; object-fit: cover; object-position: center; } .category a[rel=»category tag»]{ font-weight: 600; line-height: 24px; } .text-desc p{ display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; text-overflow: ellipsis; overflow: hidden; } .text-desc{ margin-bottom: auto !important; } .meta-autor p{ font-weight: 600; color: #000; } .taxonomy-post-type p, .taxonomy-post-type a{ font-weight: 600 !important; color: #007572; pointer-events: none; }

Lo más reciente

  • usuarios transferiendo dinero usando su llave bre-b

    Pagos Inmediatos

    Así funcionará la tecnología detrás de los pagos inmediatos

    Utilizará el estándar ISO 20022 para asegurar la interoperabilidad y mecanismos de seguridad avanzada.

    .image-post{ width: 100%; } .image-post img{ aspect-ratio: 324 / 232; width: 100%; object-fit: cover; object-position: center; } .category a[rel=»category tag»]{ font-weight: 600; line-height: 24px; } .text-desc p{ display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; text-overflow: ellipsis; overflow: hidden; } .text-desc{ margin-bottom: auto !important; } .meta-autor p{ font-weight: 600; color: #000; } .taxonomy-post-type p, .taxonomy-post-type a{ font-weight: 600 !important; color: #007572; pointer-events: none; }
  • ejecutivos analizando gráficos financieros

    Open Finance y Data

    Regulación Open Finance Latam: Banca, Fintech, Pagos.

    Busca equilibrar la innovación y la competencia con la protección de datos y la seguridad financiera.

    .image-post{ width: 100%; } .image-post img{ aspect-ratio: 324 / 232; width: 100%; object-fit: cover; object-position: center; } .category a[rel=»category tag»]{ font-weight: 600; line-height: 24px; } .text-desc p{ display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; text-overflow: ellipsis; overflow: hidden; } .text-desc{ margin-bottom: auto !important; } .meta-autor p{ font-weight: 600; color: #000; } .taxonomy-post-type p, .taxonomy-post-type a{ font-weight: 600 !important; color: #007572; pointer-events: none; }
  • ejecutivos estrechando sus manos tras acuerdo financiero

    Open Finance y Data

    La implementación del Open Finance en Colombia  

    Un marco normativo claro y equilibrado es crucial para evitar ralentización e incertidumbre.

    .image-post{ width: 100%; } .image-post img{ aspect-ratio: 324 / 232; width: 100%; object-fit: cover; object-position: center; } .category a[rel=»category tag»]{ font-weight: 600; line-height: 24px; } .text-desc p{ display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; text-overflow: ellipsis; overflow: hidden; } .text-desc{ margin-bottom: auto !important; } .meta-autor p{ font-weight: 600; color: #000; } .taxonomy-post-type p, .taxonomy-post-type a{ font-weight: 600 !important; color: #007572; pointer-events: none; }
  • ejecutivos analizando informes financieros

    Open Finance y Data

    ¿Qué es Open Data y como esta revolucionando la banca digital?

    Disponibilidad de datos financieros abiertos y estandarizados, para que terceros creen apps y servicios.

    .image-post{ width: 100%; } .image-post img{ aspect-ratio: 324 / 232; width: 100%; object-fit: cover; object-position: center; } .category a[rel=»category tag»]{ font-weight: 600; line-height: 24px; } .text-desc p{ display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; text-overflow: ellipsis; overflow: hidden; } .text-desc{ margin-bottom: auto !important; } .meta-autor p{ font-weight: 600; color: #000; } .taxonomy-post-type p, .taxonomy-post-type a{ font-weight: 600 !important; color: #007572; pointer-events: none; }
  • empresarios analizando gráficos financieros

    Open Finance y Data

    Open Finance: Acelera la inclusión financiera en la calle.

    Comparte datos financieros de forma segura: facilita servicios bancarios a no bancarizados.

    .image-post{ width: 100%; } .image-post img{ aspect-ratio: 324 / 232; width: 100%; object-fit: cover; object-position: center; } .category a[rel=»category tag»]{ font-weight: 600; line-height: 24px; } .text-desc p{ display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; text-overflow: ellipsis; overflow: hidden; } .text-desc{ margin-bottom: auto !important; } .meta-autor p{ font-weight: 600; color: #000; } .taxonomy-post-type p, .taxonomy-post-type a{ font-weight: 600 !important; color: #007572; pointer-events: none; }
  • usuario utilizando su dispositivio movil con bre-b

    Pagos Inmediatos

    El impacto del nuevo sistema de Pagos Inmediatos Bre-B

    Mejorará la gestión de flujos de caja, reducirá los tiempos de espera y aumentará la liquidez de la empresa.

    .image-post{ width: 100%; } .image-post img{ aspect-ratio: 324 / 232; width: 100%; object-fit: cover; object-position: center; } .category a[rel=»category tag»]{ font-weight: 600; line-height: 24px; } .text-desc p{ display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; text-overflow: ellipsis; overflow: hidden; } .text-desc{ margin-bottom: auto !important; } .meta-autor p{ font-weight: 600; color: #000; } .taxonomy-post-type p, .taxonomy-post-type a{ font-weight: 600 !important; color: #007572; pointer-events: none; }
  • cliente registrandose en bre-b

    Pagos Inmediatos

    Así se alistan los bancos para migrar al nuevo sistema.

    Actualización en mensajería a ISO 20022, seguridad robusta y capacitación 24/7 para pagos.

    .image-post{ width: 100%; } .image-post img{ aspect-ratio: 324 / 232; width: 100%; object-fit: cover; object-position: center; } .category a[rel=»category tag»]{ font-weight: 600; line-height: 24px; } .text-desc p{ display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; text-overflow: ellipsis; overflow: hidden; } .text-desc{ margin-bottom: auto !important; } .meta-autor p{ font-weight: 600; color: #000; } .taxonomy-post-type p, .taxonomy-post-type a{ font-weight: 600 !important; color: #007572; pointer-events: none; }
  • clientes y usuarios utilizando bre-b

    Pagos Inmediatos

    Listas las reglas del juego para entrada de Bre-B en septiembre

    Este nuevo sistema modernizará y hará más eficientes las operaciones interbancarias en Colombia.

    .image-post{ width: 100%; } .image-post img{ aspect-ratio: 324 / 232; width: 100%; object-fit: cover; object-position: center; } .category a[rel=»category tag»]{ font-weight: 600; line-height: 24px; } .text-desc p{ display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; text-overflow: ellipsis; overflow: hidden; } .text-desc{ margin-bottom: auto !important; } .meta-autor p{ font-weight: 600; color: #000; } .taxonomy-post-type p, .taxonomy-post-type a{ font-weight: 600 !important; color: #007572; pointer-events: none; }
  • ejecutivo bancario revisando informes de open data

    Open Finance y Data

    5 retos clave con la llegada del ”open banking” a Colombia

    Ciberseguridad, interoperabilidad, consentimiento, competencia e inversión tecnológica son retos clave.

    .image-post{ width: 100%; } .image-post img{ aspect-ratio: 324 / 232; width: 100%; object-fit: cover; object-position: center; } .category a[rel=»category tag»]{ font-weight: 600; line-height: 24px; } .text-desc p{ display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; text-overflow: ellipsis; overflow: hidden; } .text-desc{ margin-bottom: auto !important; } .meta-autor p{ font-weight: 600; color: #000; } .taxonomy-post-type p, .taxonomy-post-type a{ font-weight: 600 !important; color: #007572; pointer-events: none; }

E-book

Descarga guías y material exclusivo para profundizar en temas estratégicos.

aod
tv-icon-logo
.desc-final-cta p{ font-weight: 500; } .button-final-cta{ align-items: center; font-weight: 600 !important; } .button-final-cta i{ font-family: ‘flecha’ !important; margin-left: 10px !important; width: 16px; height: 16px; }
whight-house

Blog

Explora nuestros artículos y las últimas novedades en la industria.