init
This commit is contained in:
@@ -0,0 +1,149 @@
|
||||
<?php
|
||||
|
||||
/*************
|
||||
* - Cart
|
||||
*************/
|
||||
|
||||
Flatsome_Option::add_section( 'header_cart', array(
|
||||
'title' => __( 'Cart', 'flatsome-admin' ),
|
||||
'panel' => 'header',
|
||||
//'description' => __( 'This is the section description', 'flatsome-admin' ),
|
||||
) );
|
||||
|
||||
Flatsome_Option::add_field( 'option', array(
|
||||
'type' => 'select',
|
||||
'settings' => 'header_cart_style',
|
||||
'label' => __( 'Cart Style', 'flatsome-admin' ),
|
||||
'section' => 'header_cart',
|
||||
'transport' => $transport,
|
||||
'default' => 'dropdown',
|
||||
'choices' => array(
|
||||
'dropdown' => __( 'Dropdown', 'flatsome-admin' ),
|
||||
'off-canvas' => __( 'Off-Canvas Sidebar', 'flatsome-admin' ),
|
||||
'link' => __( 'Link Only', 'flatsome-admin' ),
|
||||
),
|
||||
));
|
||||
|
||||
Flatsome_Option::add_field( 'option', array(
|
||||
'type' => 'checkbox',
|
||||
'settings' => 'cart_dropdown_show',
|
||||
'label' => __( 'Auto reveal mini cart', 'flatsome-admin' ),
|
||||
'description' => __( 'Reveal mini cart after a product is added', 'flatsome-admin' ),
|
||||
'section' => 'header_cart',
|
||||
'active_callback' => array(
|
||||
array(
|
||||
'setting' => 'header_cart_style',
|
||||
'operator' => '!==',
|
||||
'value' => 'link',
|
||||
),
|
||||
),
|
||||
'default' => 1,
|
||||
));
|
||||
|
||||
Flatsome_Option::add_field( 'option', array(
|
||||
'type' => 'radio-image',
|
||||
'settings' => 'cart_icon_style',
|
||||
'label' => __( 'Cart Icon Style', 'flatsome-admin' ),
|
||||
'section' => 'header_cart',
|
||||
'transport' => $transport,
|
||||
'default' => '',
|
||||
'choices' => array(
|
||||
'' => $image_url . 'cart-icon-default.svg',
|
||||
'plain' => $image_url . 'cart-icon-plain.svg',
|
||||
'outline' => $image_url . 'cart-icon-outline.svg',
|
||||
'fill' => $image_url . 'cart-icon-fill.svg',
|
||||
'fill-round' => $image_url . 'cart-icon-fill-round.svg',
|
||||
'outline-round' => $image_url . 'cart-icon-outline-round.svg',
|
||||
),
|
||||
));
|
||||
|
||||
Flatsome_Option::add_field( 'option', array(
|
||||
'type' => 'radio-image',
|
||||
'settings' => 'cart_icon',
|
||||
'label' => __( 'Cart Icon', 'flatsome-admin' ),
|
||||
'section' => 'header_cart',
|
||||
'transport' => $transport,
|
||||
'default' => 'basket',
|
||||
'choices' => array(
|
||||
'basket' => $image_url . 'cart-icon-basket.svg',
|
||||
'cart' => $image_url . 'cart-icon-cart.svg',
|
||||
'bag' => $image_url . 'cart-icon-bag.svg',
|
||||
),
|
||||
));
|
||||
|
||||
|
||||
Flatsome_Option::add_field( 'option', array(
|
||||
'type' => 'image',
|
||||
'settings' => 'custom_cart_icon',
|
||||
'label' => __( 'Custom Cart Icon', 'flatsome-admin' ),
|
||||
'section' => 'header_cart',
|
||||
'transport' => $transport,
|
||||
'default' => '',
|
||||
));
|
||||
|
||||
|
||||
Flatsome_Option::add_field( 'option', array(
|
||||
'type' => 'checkbox',
|
||||
'settings' => 'header_cart_total',
|
||||
'label' => __( 'Show cart totals', 'flatsome-admin' ),
|
||||
'section' => 'header_cart',
|
||||
'transport' => $transport,
|
||||
'default' => 1,
|
||||
));
|
||||
|
||||
Flatsome_Option::add_field( 'option', array(
|
||||
'type' => 'checkbox',
|
||||
'settings' => 'header_cart_title',
|
||||
'label' => __( 'Show cart title', 'flatsome-admin' ),
|
||||
'section' => 'header_cart',
|
||||
'transport' => $transport,
|
||||
'default' => 1,
|
||||
));
|
||||
|
||||
Flatsome_Option::add_field( 'option', array(
|
||||
'type' => 'textarea',
|
||||
'settings' => 'html_cart_header',
|
||||
'transport' => $transport,
|
||||
'label' => __( 'Custom Content after Cart', 'flatsome-admin' ),
|
||||
'description' => __( 'Add Any HTML or Shortcode here...', 'flatsome-admin' ),
|
||||
'section' => 'header_cart',
|
||||
'sanitize_callback' => 'flatsome_custom_sanitize',
|
||||
));
|
||||
|
||||
function flatsome_refresh_header_cart_partials( WP_Customize_Manager $wp_customize ) {
|
||||
|
||||
if ( ! isset( $wp_customize->selective_refresh ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Cart
|
||||
$wp_customize->selective_refresh->add_partial( 'header-cart', array(
|
||||
'selector' => '.cart-item',
|
||||
'container_inclusive' => true,
|
||||
'settings' => array('cart_icon','header_cart_style','cart_icon_style','custom_cart_icon','header_cart_total','header_cart_title','html_cart_header'),
|
||||
'render_callback' => function() {
|
||||
get_template_part('template-parts/header/partials/element','cart');
|
||||
},
|
||||
) );
|
||||
|
||||
// Cart
|
||||
$wp_customize->selective_refresh->add_partial( 'header-cart', array(
|
||||
'selector' => '.header-nav .cart-item',
|
||||
'container_inclusive' => true,
|
||||
'settings' => array('cart_icon','header_cart_style','cart_icon_style','custom_cart_icon','header_cart_total','header_cart_title','html_cart_header'),
|
||||
'render_callback' => function() {
|
||||
get_template_part('template-parts/header/partials/element','cart');
|
||||
},
|
||||
) );
|
||||
|
||||
$wp_customize->selective_refresh->add_partial( 'header-cart-mobile', array(
|
||||
'selector' => '.mobile-nav .cart-item',
|
||||
'container_inclusive' => true,
|
||||
'settings' => array('cart_icon','header_cart_style','cart_icon_style','custom_cart_icon','header_cart_total','header_cart_title','html_cart_header'),
|
||||
'render_callback' => function() {
|
||||
get_template_part('template-parts/header/partials/element','cart-mobile');
|
||||
},
|
||||
) );
|
||||
|
||||
}
|
||||
add_action( 'customize_register', 'flatsome_refresh_header_cart_partials' );
|
||||
Reference in New Issue
Block a user