chore: Remove CTA A/B Testing legacy system
This feature was not part of the current development phase. Deleted files: - Inc/cta-ab-testing.php (A/B testing implementation) - Inc/customizer-cta.php (WordPress Customizer settings + Google Analytics) - TemplateParts/content-cta.php (CTA template part) - Assets/Js/cta-tracking.js (GA4 tracking script) Modified files: - functions.php: Remove require_once for deleted files - functions-addon.php: Remove CTA loading references - Inc/enqueue-scripts.php: Remove roi_enqueue_cta_assets() function Note: CTA components in Admin Panel (CtaBoxSidebar, CtaLetsTalk, CtaPost) are NOT affected - they are part of the Clean Architecture system. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -204,22 +204,6 @@ function roi_render_component(string $componentName): string {
|
||||
}
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// CARGAR ARCHIVOS DE INC/
|
||||
// =============================================================================
|
||||
|
||||
// CTA A/B Testing System
|
||||
$cta_ab_testing = get_template_directory() . '/Inc/cta-ab-testing.php';
|
||||
if (file_exists($cta_ab_testing)) {
|
||||
require_once $cta_ab_testing;
|
||||
}
|
||||
|
||||
// CTA Customizer Settings
|
||||
$cta_customizer = get_template_directory() . '/Inc/customizer-cta.php';
|
||||
if (file_exists($cta_customizer)) {
|
||||
require_once $cta_customizer;
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// ESTILOS BASE PARA TOP NOTIFICATION BAR
|
||||
// =============================================================================
|
||||
|
||||
Reference in New Issue
Block a user