Reescritura COMPLETA de header.php, footer.php y single.php para replicar EXACTAMENTE la estructura del template RDash (líneas 54-1155). **Issue #82 - header.php (líneas 54-133):** - ✅ Eliminados wrappers extra: <div id="page">, <div id="content"> - ✅ Top Notification Bar: container (NO container-fluid), sin cookie check - ✅ Navbar: toggler PRIMERO, collapse con menú + botón Let's Talk - ✅ Estructura HTML limpia sin wrappers innecesarios **Issue #83 - footer.php (líneas 1022-1155):** - ✅ Footer Contact Form: col-lg-5 (info) + col-lg-7 (form) correcto - ✅ Footer Principal: footer.py-5.mt-0.bg-dark.text-white - ✅ Widget areas: 3 cols pequeñas + 1 newsletter con offset - ✅ Social icons agregados: Twitter, Instagram, Facebook - ✅ Eliminado footer menu (no está en template) **Issue #84 - single.php (líneas 135-1020) - CRÍTICO:** - ✅ Hero Section: container-fluid.py-5.mb-4.hero-title con category badges + H1 - ✅ Grid layout: container > row > col-lg-9 + col-lg-3 - ✅ Orden correcto en col-lg-9: 1. Featured Image 2. Post Content 3. Share Buttons (6 redes) 4. CTA A/B Testing (variante A y B) 5. Related Posts (12 cards simples #f8f9fa) 6. Paginación - ✅ Eliminados wrappers WordPress: <article>, <header>, <footer>, <main>, <div id="primary"> - ✅ Eliminado post meta, tags, comments, post navigation **Problemas CRÍTICOS resueltos:** - ❌ Sidebar en medio → ✅ Sidebar al LADO (col-lg-3) - ❌ Related posts vibrantes → ✅ Cards simples #f8f9fa - ❌ Hero section ausente → ✅ Hero con gradiente navy - ❌ Wrappers extra → ✅ Estructura limpia - ❌ Elements faltantes → ✅ Todos los componentes presentes **Validación:** - ✅ Sintaxis PHP: 0 errores en 3 archivos - ✅ Estructura HTML: Replica exactamente template RDash - ✅ Grid layout: Bootstrap 5.3.2 correcto - ✅ Orden de componentes: Idéntico al template **Estadísticas:** - 3 archivos reescritos completamente - single.php: -258 líneas antiguas, +207 líneas nuevas - header.php: -110 líneas antiguas, +94 líneas nuevas - footer.php: -190 líneas antiguas, +151 líneas nuevas - Total: Código más limpio y fiel al template Closes #82, #83, #84 Relacionado con: #81 (FASE 2 principal), #57 (Discrepancias visuales) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
151 lines
5.3 KiB
PHP
151 lines
5.3 KiB
PHP
<?php
|
|
/**
|
|
* Footer Template
|
|
*
|
|
* Replica EXACTAMENTE la estructura del template RDash (líneas 1022-1155)
|
|
* Sin wrappers extra.
|
|
*
|
|
* @package Apus_Theme
|
|
* @since 1.0.0
|
|
*/
|
|
?>
|
|
|
|
<!-- Footer Contact Form Section (Template líneas 1023-1086) -->
|
|
<section class="py-5 mt-5 bg-secondary bg-opacity-25">
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-10">
|
|
<h2 class="h3 text-center mb-4"><?php esc_html_e('¿Tienes un proyecto en mente?', 'apus-theme'); ?></h2>
|
|
|
|
<div class="row">
|
|
<!-- Contact Info - col-lg-5 (Template líneas 1030-1064) -->
|
|
<div class="col-lg-5 mb-4 mb-lg-0">
|
|
<h3 class="h5 mb-4"><?php esc_html_e('Información de Contacto', 'apus-theme'); ?></h3>
|
|
|
|
<div class="d-flex align-items-start mb-3">
|
|
<i class="bi bi-telephone-fill fs-4 me-3" style="color: #FF8600;"></i>
|
|
<div>
|
|
<h6 class="mb-1"><?php esc_html_e('Teléfono', 'apus-theme'); ?></h6>
|
|
<p class="mb-0 text-muted">+52 123 456 7890</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="d-flex align-items-start mb-3">
|
|
<i class="bi bi-envelope-fill fs-4 me-3" style="color: #FF8600;"></i>
|
|
<div>
|
|
<h6 class="mb-1"><?php esc_html_e('Email', 'apus-theme'); ?></h6>
|
|
<p class="mb-0 text-muted">contacto@apumexico.com</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="d-flex align-items-start">
|
|
<i class="bi bi-geo-alt-fill fs-4 me-3" style="color: #FF8600;"></i>
|
|
<div>
|
|
<h6 class="mb-1"><?php esc_html_e('Ubicación', 'apus-theme'); ?></h6>
|
|
<p class="mb-0 text-muted"><?php esc_html_e('Ciudad de México, México', 'apus-theme'); ?></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Contact Form - col-lg-7 (Template líneas 1066-1084) -->
|
|
<div class="col-lg-7">
|
|
<form id="footerContactForm">
|
|
<div class="row g-3">
|
|
<div class="col-md-6">
|
|
<label for="footerFullName" class="form-label"><?php esc_html_e('Nombre completo *', 'apus-theme'); ?></label>
|
|
<input type="text" class="form-control" id="footerFullName" name="fullName" required>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<label for="footerCompany" class="form-label"><?php esc_html_e('Empresa', 'apus-theme'); ?></label>
|
|
<input type="text" class="form-control" id="footerCompany" name="company">
|
|
</div>
|
|
<div class="col-md-6">
|
|
<label for="footerWhatsapp" class="form-label"><?php esc_html_e('WhatsApp *', 'apus-theme'); ?></label>
|
|
<input type="tel" class="form-control" id="footerWhatsapp" name="whatsapp" required>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<label for="footerEmail" class="form-label"><?php esc_html_e('Email *', 'apus-theme'); ?></label>
|
|
<input type="email" class="form-control" id="footerEmail" name="email" required>
|
|
</div>
|
|
<div class="col-12">
|
|
<label for="footerComments" class="form-label"><?php esc_html_e('Comentarios', 'apus-theme'); ?></label>
|
|
<textarea class="form-control" id="footerComments" name="comments" rows="4"></textarea>
|
|
</div>
|
|
<div class="col-12">
|
|
<button type="submit" class="btn btn-contact-submit w-100">
|
|
<i class="bi bi-send-fill me-2"></i><?php esc_html_e('Enviar Mensaje', 'apus-theme'); ?>
|
|
</button>
|
|
</div>
|
|
<div id="footerFormMessage" class="col-12 mt-2 alert" style="display: none;"></div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer Principal (Template líneas 1088-1147) -->
|
|
<footer class="py-5 mt-0 bg-dark text-white" role="contentinfo">
|
|
<div class="container">
|
|
<div class="row">
|
|
<!-- Widget Areas (3 columnas pequeñas) -->
|
|
<?php if (is_active_sidebar('footer-1')) : ?>
|
|
<div class="col-6 col-md-2 mb-3">
|
|
<?php dynamic_sidebar('footer-1'); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if (is_active_sidebar('footer-2')) : ?>
|
|
<div class="col-6 col-md-2 mb-3">
|
|
<?php dynamic_sidebar('footer-2'); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if (is_active_sidebar('footer-3')) : ?>
|
|
<div class="col-6 col-md-2 mb-3">
|
|
<?php dynamic_sidebar('footer-3'); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<!-- Newsletter Area (1 columna grande) -->
|
|
<?php if (is_active_sidebar('footer-4')) : ?>
|
|
<div class="col-md-5 offset-md-1 mb-3">
|
|
<?php dynamic_sidebar('footer-4'); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
<!-- Copyright y Social Icons (Template líneas 1118-1132) -->
|
|
<div class="d-flex flex-column flex-sm-row justify-content-between py-4 my-4 border-top">
|
|
<p>© <?php echo date('Y'); ?> <?php bloginfo('name'); ?>. <?php esc_html_e('Todos los derechos reservados.', 'apus-theme'); ?></p>
|
|
<ul class="list-unstyled d-flex">
|
|
<li class="ms-3">
|
|
<a class="link-light" href="#" aria-label="<?php esc_attr_e('Twitter', 'apus-theme'); ?>">
|
|
<i class="bi bi-twitter"></i>
|
|
</a>
|
|
</li>
|
|
<li class="ms-3">
|
|
<a class="link-light" href="#" aria-label="<?php esc_attr_e('Instagram', 'apus-theme'); ?>">
|
|
<i class="bi bi-instagram"></i>
|
|
</a>
|
|
</li>
|
|
<li class="ms-3">
|
|
<a class="link-light" href="#" aria-label="<?php esc_attr_e('Facebook', 'apus-theme'); ?>">
|
|
<i class="bi bi-facebook"></i>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Modal Container (Template línea 1150) -->
|
|
<div id="modalContainer"></div>
|
|
|
|
<?php wp_footer(); ?>
|
|
|
|
</body>
|
|
</html>
|