feat: initial ACRIB WordPress deployment
- WordPress 6.9.4 (es_ES) with Kadence theme - Homepage: Hero, La Asociación, Pilares, Beneficios, Eventos, Miembros, Hazte Miembro, Contacto - Brand identity: #13294b navy, #a12932 burgundy, #c69c48 gold - Fonts: Raleway (headings) + Source Sans 3 (body) + Lato (UI) - Plugins: Kadence Blocks, Polylang, Contact Form 7 - Custom CSS with full brand styling and responsive layout - HTTPS enforced via wp-config.php proxy detection
This commit is contained in:
@@ -0,0 +1,116 @@
|
||||
<?php
|
||||
/**
|
||||
* Header Main Row Options
|
||||
*
|
||||
* @package Kadence
|
||||
*/
|
||||
|
||||
namespace Kadence;
|
||||
|
||||
use Kadence\Theme_Customizer;
|
||||
use function Kadence\kadence;
|
||||
|
||||
ob_start(); ?>
|
||||
<div class="kadence-compontent-tabs nav-tab-wrapper wp-clearfix">
|
||||
<a href="#" class="nav-tab kadence-general-tab kadence-compontent-tabs-button nav-tab-active" data-tab="general">
|
||||
<span><?php esc_html_e( 'General', 'kadence' ); ?></span>
|
||||
</a>
|
||||
</div>
|
||||
<?php
|
||||
$compontent_tabs = ob_get_clean();
|
||||
$settings = array(
|
||||
'footer_widget6_breaker' => array(
|
||||
'control_type' => 'kadence_blank_control',
|
||||
'section' => 'sidebar-widgets-footer6',
|
||||
'settings' => false,
|
||||
'priority' => 5,
|
||||
'description' => $compontent_tabs,
|
||||
),
|
||||
'footer_widget6_align' => array(
|
||||
'control_type' => 'kadence_radio_icon_control',
|
||||
'section' => 'sidebar-widgets-footer6',
|
||||
'label' => esc_html__( 'Content Align', 'kadence' ),
|
||||
'priority' => 5,
|
||||
'default' => kadence()->default( 'footer_widget6_align' ),
|
||||
'context' => array(
|
||||
array(
|
||||
'setting' => '__current_tab',
|
||||
'value' => 'general',
|
||||
),
|
||||
),
|
||||
'live_method' => array(
|
||||
array(
|
||||
'type' => 'class',
|
||||
'selector' => '.footer-widget6',
|
||||
'pattern' => array(
|
||||
'desktop' => 'content-align-$',
|
||||
'tablet' => 'content-tablet-align-$',
|
||||
'mobile' => 'content-mobile-align-$',
|
||||
),
|
||||
'key' => '',
|
||||
),
|
||||
),
|
||||
'input_attrs' => array(
|
||||
'layout' => array(
|
||||
'left' => array(
|
||||
'tooltip' => __( 'Left Align', 'kadence' ),
|
||||
'dashicon' => 'editor-alignleft',
|
||||
),
|
||||
'center' => array(
|
||||
'tooltip' => __( 'Center Align', 'kadence' ),
|
||||
'dashicon' => 'editor-aligncenter',
|
||||
),
|
||||
'right' => array(
|
||||
'tooltip' => __( 'Right Align', 'kadence' ),
|
||||
'dashicon' => 'editor-alignright',
|
||||
),
|
||||
),
|
||||
'responsive' => true,
|
||||
),
|
||||
),
|
||||
'footer_widget6_vertical_align' => array(
|
||||
'control_type' => 'kadence_radio_icon_control',
|
||||
'section' => 'sidebar-widgets-footer6',
|
||||
'label' => esc_html__( 'Content Vertical Align', 'kadence' ),
|
||||
'priority' => 5,
|
||||
'default' => kadence()->default( 'footer_widget6_vertical_align' ),
|
||||
'context' => array(
|
||||
array(
|
||||
'setting' => '__current_tab',
|
||||
'value' => 'general',
|
||||
),
|
||||
),
|
||||
'live_method' => array(
|
||||
array(
|
||||
'type' => 'class',
|
||||
'selector' => '.footer-widget6',
|
||||
'pattern' => array(
|
||||
'desktop' => 'content-valign-$',
|
||||
'tablet' => 'content-tablet-valign-$',
|
||||
'mobile' => 'content-mobile-valign-$',
|
||||
),
|
||||
'key' => '',
|
||||
),
|
||||
),
|
||||
'input_attrs' => array(
|
||||
'layout' => array(
|
||||
'top' => array(
|
||||
'tooltip' => __( 'Top Align', 'kadence' ),
|
||||
'icon' => 'aligntop',
|
||||
),
|
||||
'middle' => array(
|
||||
'tooltip' => __( 'Middle Align', 'kadence' ),
|
||||
'icon' => 'alignmiddle',
|
||||
),
|
||||
'bottom' => array(
|
||||
'tooltip' => __( 'Bottom Align', 'kadence' ),
|
||||
'icon' => 'alignbottom',
|
||||
),
|
||||
),
|
||||
'responsive' => true,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
Theme_Customizer::add_settings( $settings );
|
||||
|
||||
Reference in New Issue
Block a user