You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
623 lines
22 KiB
623 lines
22 KiB
<?php if ( ! defined( 'WOODMART_THEME_DIR' ) ) exit( 'No direct script access allowed' );
|
|
|
|
if( ! function_exists( 'woodmart_vc_extra_classes' ) ) {
|
|
|
|
if( defined( 'VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG' ) ) {
|
|
add_filter( VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, 'woodmart_vc_extra_classes', 30, 3 );
|
|
}
|
|
|
|
function woodmart_vc_extra_classes( $class, $base, $atts ) {
|
|
if ( ! empty( $atts['woodmart_inline'] ) && 'yes' === $atts['woodmart_inline'] ) {
|
|
$class .= ' inline-element';
|
|
}
|
|
if ( ! empty( $atts['woodmart_color_scheme'] ) ) {
|
|
$class .= ' color-scheme-' . $atts['woodmart_color_scheme'];
|
|
}
|
|
if ( isset( $atts['text_larger'] ) && $atts['text_larger'] == 'yes' ) {
|
|
$class .= ' text-larger';
|
|
}
|
|
if ( isset( $atts['woodmart_sticky_column'] ) && $atts['woodmart_sticky_column'] == 'true' ) {
|
|
$class .= ' woodmart-sticky-column';
|
|
woodmart_enqueue_js_library( 'sticky-kit' );
|
|
woodmart_enqueue_js_script( 'sticky-column' );
|
|
}
|
|
if ( isset( $atts['woodmart_parallax'] ) && $atts['woodmart_parallax'] ) {
|
|
$class .= ' wd-parallax';
|
|
$class .= woodmart_get_old_classes( ' woodmart-parallax' );
|
|
woodmart_enqueue_js_library( 'parallax' );
|
|
woodmart_enqueue_js_script( 'parallax' );
|
|
}
|
|
if ( isset( $atts['woodmart_disable_overflow'] ) && $atts['woodmart_disable_overflow'] ) {
|
|
$class .= ' wd-disable-overflow';
|
|
}
|
|
if ( isset( $atts['woodmart_gradient_switch'] ) && $atts['woodmart_gradient_switch'] == 'yes' && apply_filters( 'woodmart_gradients_enabled', true ) ) {
|
|
$class .= ' wd-row-gradient-enable';
|
|
}
|
|
//Bg option
|
|
if ( ! empty( $atts['woodmart_bg_position'] ) ) {
|
|
$class .= ' wd-bg-' . $atts['woodmart_bg_position'];
|
|
}
|
|
//Text align option
|
|
if ( ! empty( $atts['woodmart_text_align'] ) ) {
|
|
$class .= ' text-' . $atts['woodmart_text_align'];
|
|
}
|
|
//Responsive opt
|
|
if ( isset( $atts['woodmart_hide_large'] ) && $atts['woodmart_hide_large'] ) {
|
|
$class .= ' hidden-lg';
|
|
}
|
|
if ( isset( $atts['woodmart_hide_medium'] ) && $atts['woodmart_hide_medium'] ) {
|
|
$class .= ' hidden-md';
|
|
}
|
|
if ( isset( $atts['woodmart_hide_small'] ) && $atts['woodmart_hide_small'] ) {
|
|
$class .= ' hidden-sm';
|
|
}
|
|
if ( isset( $atts['woodmart_hide_extra_small'] ) && $atts['woodmart_hide_extra_small'] ) {
|
|
$class .= ' hidden-xs';
|
|
}
|
|
//Row reverse opt
|
|
if ( isset( $atts['row_reverse_mobile'] ) && $atts['row_reverse_mobile'] ) {
|
|
$class .= ' row-reverse-mobile';
|
|
}
|
|
if ( isset( $atts['row_reverse_tablet'] ) && $atts['row_reverse_tablet'] ) {
|
|
$class .= ' row-reverse-tablet';
|
|
}
|
|
|
|
//Hide bg img on mobile
|
|
if ( isset( $atts['mobile_bg_img_hidden'] ) && $atts['mobile_bg_img_hidden'] == 'yes' ) {
|
|
$class .= ' mobile-bg-img-hidden';
|
|
}
|
|
|
|
//Hide bg img on tablet
|
|
if ( isset( $atts['tablet_bg_img_hidden'] ) && $atts['tablet_bg_img_hidden'] == 'yes' ) {
|
|
$class .= ' tablet-bg-img-hidden';
|
|
}
|
|
|
|
//Reset margins
|
|
if ( isset( $atts['mobile_reset_margin'] ) && $atts['mobile_reset_margin'] == 'yes' ) {
|
|
$class .= ' reset-margin-mobile';
|
|
}
|
|
|
|
if ( isset( $atts['tablet_reset_margin'] ) && $atts['tablet_reset_margin'] == 'yes' ) {
|
|
$class .= ' reset-margin-tablet';
|
|
}
|
|
|
|
return $class;
|
|
}
|
|
}
|
|
|
|
if( ! function_exists( 'woodmart_section_title_color_variation' ) ) {
|
|
function woodmart_section_title_color_variation() {
|
|
$variation = array(
|
|
esc_html__( 'Default', 'woodmart' ) => 'default',
|
|
esc_html__( 'Primary color', 'woodmart' ) => 'primary',
|
|
esc_html__( 'Alternative color', 'woodmart' ) => 'alt',
|
|
esc_html__( 'Black', 'woodmart' ) => 'black',
|
|
esc_html__( 'White', 'woodmart' ) => 'white',
|
|
);
|
|
$variation2 = array( esc_html__( 'Gradient', 'woodmart' ) => 'gradient' );
|
|
if ( apply_filters( 'woodmart_gradients_enabled', true ) ) {
|
|
$variation = array_merge( $variation, $variation2 );
|
|
}
|
|
return $variation;
|
|
}
|
|
}
|
|
|
|
if( ! function_exists( 'woodmart_title_gradient_picker' ) ) {
|
|
function woodmart_title_gradient_picker() {
|
|
$title_color = array(
|
|
'type' => 'woodmart_gradient',
|
|
'param_name' => 'woodmart_color_gradient',
|
|
'heading' => esc_html__( 'Gradient title color', 'woodmart' ),
|
|
'dependency' => array(
|
|
'element' => 'color',
|
|
'value' => array( 'gradient' ),
|
|
)
|
|
);
|
|
if ( !apply_filters( 'woodmart_gradients_enabled', true ) ) $title_color = false;
|
|
return $title_color;
|
|
}
|
|
}
|
|
|
|
|
|
if( ! function_exists( 'woodmart_vc_map_shortcodes' ) ) {
|
|
|
|
add_action( 'vc_before_init', 'woodmart_vc_map_shortcodes' );
|
|
|
|
function woodmart_vc_map_shortcodes() {
|
|
$display_inline = array(
|
|
'type' => 'woodmart_switch',
|
|
'heading' => esc_html__( 'Display inline', 'woodmart' ),
|
|
'group' => esc_html__( 'Woodmart Extras', 'woodmart' ),
|
|
'param_name' => 'woodmart_inline',
|
|
'true_state' => 'yes',
|
|
'false_state' => 'no',
|
|
'default' => 'no',
|
|
);
|
|
|
|
vc_add_param( 'vc_single_image', $display_inline );
|
|
vc_add_param( 'vc_column_text', $display_inline );
|
|
/**
|
|
* ------------------------------------------------------------------------------------------------
|
|
* Background position
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
$woodmart_bg_position = array(
|
|
'type' => 'dropdown',
|
|
'heading' => esc_html__( 'Background position', 'woodmart' ),
|
|
'param_name' => 'woodmart_bg_position',
|
|
'group' => esc_html__( 'Woodmart Extras', 'woodmart' ),
|
|
'value' => array(
|
|
esc_html__( 'None', 'woodmart' ) => '',
|
|
esc_html__( 'Left top', 'woodmart' ) => 'left-top',
|
|
esc_html__( 'Left center', 'woodmart' ) => 'left-center',
|
|
esc_html__( 'Left bottom', 'woodmart' ) => 'left-bottom',
|
|
esc_html__( 'Right top', 'woodmart' ) => 'right-top',
|
|
esc_html__( 'Right center', 'woodmart' ) => 'right-center',
|
|
esc_html__( 'Right bottom', 'woodmart' ) => 'right-bottom',
|
|
esc_html__( 'Center top', 'woodmart' ) => 'center-top',
|
|
esc_html__( 'Center center', 'woodmart' ) => 'center-center',
|
|
esc_html__( 'Center bottom', 'woodmart' ) => 'center-bottom',
|
|
),
|
|
'edit_field_class' => 'vc_col-sm-6 vc_column',
|
|
);
|
|
|
|
vc_add_param( 'vc_row', $woodmart_bg_position );
|
|
vc_add_param( 'vc_row_inner', $woodmart_bg_position );
|
|
vc_add_param( 'vc_section', $woodmart_bg_position );
|
|
vc_add_param( 'vc_column', $woodmart_bg_position );
|
|
vc_add_param( 'vc_column_inner', $woodmart_bg_position );
|
|
|
|
/**
|
|
* ------------------------------------------------------------------------------------------------
|
|
* Hide bg img on mobile
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
$mobile_bg_img_hidden = array(
|
|
'type' => 'woodmart_switch',
|
|
'heading' => esc_html__( 'Disable background on mobile', 'woodmart' ),
|
|
'hint' => esc_html__( 'Turn on to reset background image on mobile devices', 'woodmart' ),
|
|
'param_name' => 'mobile_bg_img_hidden',
|
|
'group' => esc_html__( 'Woodmart Extras', 'woodmart' ),
|
|
'true_state' => 'yes',
|
|
'false_state' => 'no',
|
|
'default' => 'no',
|
|
'edit_field_class' => 'vc_col-sm-6 vc_column',
|
|
);
|
|
|
|
vc_add_param( 'vc_row', $mobile_bg_img_hidden );
|
|
vc_add_param( 'vc_section', $mobile_bg_img_hidden );
|
|
vc_add_param( 'vc_column', $mobile_bg_img_hidden );
|
|
|
|
/**
|
|
* ------------------------------------------------------------------------------------------------
|
|
* Hide bg img on tablet
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
$tablet_bg_img_hidden = array(
|
|
'type' => 'woodmart_switch',
|
|
'heading' => esc_html__( 'Disable background on tablet', 'woodmart' ),
|
|
'hint' => esc_html__( 'Turn on to reset background image on tablet devices', 'woodmart' ),
|
|
'param_name' => 'tablet_bg_img_hidden',
|
|
'group' => esc_html__( 'Woodmart Extras', 'woodmart' ),
|
|
'true_state' => 'yes',
|
|
'false_state' => 'no',
|
|
'default' => 'no',
|
|
'edit_field_class' => 'vc_col-sm-6 vc_column',
|
|
);
|
|
|
|
vc_add_param( 'vc_row', $tablet_bg_img_hidden );
|
|
vc_add_param( 'vc_section', $tablet_bg_img_hidden );
|
|
vc_add_param( 'vc_column', $tablet_bg_img_hidden );
|
|
|
|
/**
|
|
* ------------------------------------------------------------------------------------------------
|
|
* Parallax option
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
$attributes = array(
|
|
'type' => 'woodmart_switch',
|
|
'heading' => esc_html__( 'Woodmart parallax', 'woodmart' ),
|
|
'param_name' => 'woodmart_parallax',
|
|
'group' => esc_html__( 'Woodmart Extras', 'woodmart' ),
|
|
'true_state' => 1,
|
|
'false_state' => 0,
|
|
'default' => 0,
|
|
'edit_field_class' => 'vc_col-sm-6 vc_column',
|
|
);
|
|
|
|
vc_add_param( 'vc_row', $attributes );
|
|
vc_add_param( 'vc_section', $attributes );
|
|
vc_add_param( 'vc_column', $attributes );
|
|
|
|
/**
|
|
* ------------------------------------------------------------------------------------------------
|
|
* Gradient option
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
if( apply_filters( 'woodmart_gradients_enabled', true ) ) {
|
|
$woodmart_gradient_switch = array(
|
|
'type' => 'woodmart_switch',
|
|
'heading' => esc_html__( 'woodmart gradient', 'woodmart' ),
|
|
'param_name' => 'woodmart_gradient_switch',
|
|
'group' => esc_html__( 'woodmart Extras', 'woodmart' ),
|
|
'true_state' => 'yes',
|
|
'false_state' => 'no',
|
|
'default' => 'no',
|
|
'edit_field_class' => 'vc_col-sm-6 vc_column',
|
|
);
|
|
|
|
$woodmart_color_gradient = array(
|
|
'type' => 'woodmart_gradient',
|
|
'param_name' => 'woodmart_color_gradient',
|
|
'group' => esc_html__( 'woodmart Extras', 'woodmart' ),
|
|
'dependency' => array(
|
|
'element' => 'woodmart_gradient_switch',
|
|
'value' => array( 'yes' ),
|
|
)
|
|
);
|
|
|
|
|
|
vc_add_param( 'vc_row', $woodmart_gradient_switch );
|
|
vc_add_param( 'vc_section', $woodmart_gradient_switch );
|
|
|
|
vc_add_param( 'vc_row', $woodmart_color_gradient );
|
|
vc_add_param( 'vc_section', $woodmart_color_gradient );
|
|
}
|
|
|
|
/**
|
|
* ------------------------------------------------------------------------------------------------
|
|
* Hide option
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
$woodmart_hide_large = array(
|
|
'type' => 'woodmart_switch',
|
|
'heading' => esc_html__( 'Hide on large', 'woodmart' ),
|
|
'param_name' => 'woodmart_hide_large',
|
|
'group' => esc_html__( 'Woodmart Extras', 'woodmart' ),
|
|
'true_state' => 1,
|
|
'false_state' => 0,
|
|
'default' => 0,
|
|
'edit_field_class' => 'vc_col-sm-6 vc_column',
|
|
);
|
|
|
|
$woodmart_hide_medium = array(
|
|
'type' => 'woodmart_switch',
|
|
'heading' => esc_html__( 'Hide on medium', 'woodmart' ),
|
|
'param_name' => 'woodmart_hide_medium',
|
|
'group' => esc_html__( 'Woodmart Extras', 'woodmart' ),
|
|
'true_state' => 1,
|
|
'false_state' => 0,
|
|
'default' => 0,
|
|
'edit_field_class' => 'vc_col-sm-6 vc_column',
|
|
);
|
|
|
|
$woodmart_hide_small = array(
|
|
'type' => 'woodmart_switch',
|
|
'heading' => esc_html__( 'Hide on small', 'woodmart' ),
|
|
'param_name' => 'woodmart_hide_small',
|
|
'group' => esc_html__( 'Woodmart Extras', 'woodmart' ),
|
|
'true_state' => 1,
|
|
'false_state' => 0,
|
|
'default' => 0,
|
|
'edit_field_class' => 'vc_col-sm-6 vc_column',
|
|
);
|
|
|
|
$woodmart_hide_extra_small = array(
|
|
'type' => 'woodmart_switch',
|
|
'heading' => esc_html__( 'Hide on extra small', 'woodmart' ),
|
|
'param_name' => 'woodmart_hide_extra_small',
|
|
'group' => esc_html__( 'Woodmart Extras', 'woodmart' ),
|
|
'true_state' => 1,
|
|
'false_state' => 0,
|
|
'default' => 0,
|
|
'edit_field_class' => 'vc_col-sm-6 vc_column',
|
|
);
|
|
|
|
vc_add_param( 'vc_empty_space', $woodmart_hide_large );
|
|
vc_add_param( 'vc_empty_space', $woodmart_hide_medium );
|
|
vc_add_param( 'vc_empty_space', $woodmart_hide_small );
|
|
vc_add_param( 'vc_empty_space', $woodmart_hide_extra_small );
|
|
|
|
/**
|
|
* ------------------------------------------------------------------------------------------------
|
|
* Row reverse mobile
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
$woodmart_row_reverse_mobile = array(
|
|
'type' => 'woodmart_switch',
|
|
'heading' => esc_html__( 'Row reverse on mobile', 'woodmart' ),
|
|
'param_name' => 'row_reverse_mobile',
|
|
'group' => esc_html__( 'Woodmart Extras', 'woodmart' ),
|
|
'true_state' => 1,
|
|
'false_state' => 0,
|
|
'default' => 0,
|
|
'edit_field_class' => 'vc_col-sm-6 vc_column',
|
|
);
|
|
|
|
vc_add_param( 'vc_row', $woodmart_row_reverse_mobile );
|
|
vc_add_param( 'vc_row_inner', $woodmart_row_reverse_mobile );
|
|
|
|
/**
|
|
* ------------------------------------------------------------------------------------------------
|
|
* Row reverse tablet
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
$woodmart_row_reverse_tablet = array(
|
|
'type' => 'woodmart_switch',
|
|
'heading' => esc_html__( 'Row reverse on tablet', 'woodmart' ),
|
|
'param_name' => 'row_reverse_tablet',
|
|
'group' => esc_html__( 'Woodmart Extras', 'woodmart' ),
|
|
'true_state' => 1,
|
|
'false_state' => 0,
|
|
'default' => 0,
|
|
'edit_field_class' => 'vc_col-sm-6 vc_column',
|
|
);
|
|
|
|
vc_add_param( 'vc_row', $woodmart_row_reverse_tablet );
|
|
vc_add_param( 'vc_row_inner', $woodmart_row_reverse_tablet );
|
|
|
|
/**
|
|
* ------------------------------------------------------------------------------------------------
|
|
* Gradient option
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
if( apply_filters( 'woodmart_gradients_enabled', true ) ) {
|
|
$woodmart_gradient_switch = array(
|
|
'type' => 'woodmart_switch',
|
|
'heading' => esc_html__( 'Woodmart gradient', 'woodmart' ),
|
|
'param_name' => 'woodmart_gradient_switch',
|
|
'group' => esc_html__( 'Woodmart Extras', 'woodmart' ),
|
|
'true_state' => 'yes',
|
|
'false_state' => 'no',
|
|
'default' => 'no',
|
|
'edit_field_class' => 'vc_col-sm-6 vc_column',
|
|
);
|
|
|
|
$woodmart_color_gradient = array(
|
|
'type' => 'woodmart_gradient',
|
|
'param_name' => 'woodmart_color_gradient',
|
|
'group' => esc_html__( 'Woodmart Extras', 'woodmart' ),
|
|
'dependency' => array(
|
|
'element' => 'woodmart_gradient_switch',
|
|
'value' => array( 'yes' ),
|
|
)
|
|
);
|
|
|
|
|
|
vc_add_param( 'vc_row', $woodmart_gradient_switch );
|
|
vc_add_param( 'vc_section', $woodmart_gradient_switch );
|
|
|
|
vc_add_param( 'vc_row', $woodmart_color_gradient );
|
|
vc_add_param( 'vc_section', $woodmart_color_gradient );
|
|
}
|
|
|
|
/**
|
|
* ------------------------------------------------------------------------------------------------
|
|
* Disable overflow
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
$woodmart_disable_overflow = array(
|
|
'type' => 'woodmart_switch',
|
|
'heading' => esc_html__( 'Disable "overflow:hidden;"', 'woodmart' ),
|
|
'param_name' => 'woodmart_disable_overflow',
|
|
'group' => esc_html__( 'Woodmart Extras', 'woodmart' ),
|
|
'true_state' => 1,
|
|
'false_state' => 0,
|
|
'default' => 0,
|
|
'edit_field_class' => 'vc_col-sm-6 vc_column',
|
|
);
|
|
|
|
vc_add_param( 'vc_row', $woodmart_disable_overflow );
|
|
vc_add_param( 'vc_section', $woodmart_disable_overflow );
|
|
|
|
/**
|
|
* ------------------------------------------------------------------------------------------------
|
|
* Add options to columns and text block
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
vc_remove_param( 'vc_column', 'el_class' );
|
|
|
|
vc_add_param( 'vc_column', woodmart_get_color_scheme_param() );
|
|
|
|
vc_add_param( 'vc_column', array(
|
|
'type' => 'woodmart_switch',
|
|
'group' => esc_html__( 'Woodmart Extras', 'woodmart' ),
|
|
'heading' => esc_html__( 'Enable sticky column', 'woodmart' ),
|
|
'description' => esc_html__( 'Also enable equal columns height for the parent row to make it work', 'woodmart' ),
|
|
'param_name' => 'woodmart_sticky_column',
|
|
'true_state' => 'true',
|
|
'false_state' => 'false',
|
|
'default' => 'false',
|
|
'edit_field_class' => 'vc_col-sm-6 vc_column',
|
|
) );
|
|
vc_add_param( 'vc_column', array(
|
|
'type' => 'textfield',
|
|
'heading' => esc_html__( 'Extra class name', 'woodmart' ),
|
|
'param_name' => 'el_class',
|
|
'description' => esc_html__( 'If you wish to style particular content element differently, then use this field to add a class name and then refer to it in your css file.', 'woodmart' )
|
|
) );
|
|
|
|
vc_remove_param( 'vc_column_text', 'el_class' );
|
|
|
|
vc_add_param( 'vc_column_text', woodmart_get_color_scheme_param() );
|
|
|
|
vc_add_param( 'vc_column_text', array(
|
|
'type' => 'woodmart_switch',
|
|
'heading' => esc_html__( 'Text larger', 'woodmart' ),
|
|
'param_name' => 'text_larger',
|
|
'true_state' => 'yes',
|
|
'false_state' => 'no',
|
|
'default' => 'no',
|
|
'edit_field_class' => 'vc_col-sm-6 vc_column',
|
|
) );
|
|
|
|
vc_add_param( 'vc_column_text', array(
|
|
'type' => 'textfield',
|
|
'heading' => esc_html__( 'Extra class name', 'woodmart' ),
|
|
'param_name' => 'el_class',
|
|
'description' => esc_html__( 'If you wish to style particular content element differently, then use this field to add a class name and then refer to it in your css file.', 'woodmart' )
|
|
) );
|
|
|
|
/**
|
|
* ------------------------------------------------------------------------------------------------
|
|
* Update images carousel parameters
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
vc_remove_param( 'vc_images_carousel', 'mode' );
|
|
vc_remove_param( 'vc_images_carousel', 'partial_view' );
|
|
|
|
/**
|
|
* ------------------------------------------------------------------------------------------------
|
|
* Parallax scroll
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
$vc_image_new_params = woodmart_parallax_scroll_map();
|
|
|
|
vc_add_params( 'vc_single_image', $vc_image_new_params );
|
|
|
|
vc_add_params( 'vc_column', $vc_image_new_params );
|
|
|
|
/**
|
|
* ------------------------------------------------------------------------------------------------
|
|
* Text align
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
$woodmart_text_align = array(
|
|
'type' => 'dropdown',
|
|
'heading' => esc_html__( 'Text align', 'woodmart' ),
|
|
'param_name' => 'woodmart_text_align',
|
|
'group' => esc_html__( 'Woodmart Extras', 'woodmart' ),
|
|
'value' => array(
|
|
esc_html__( 'Choose', 'woodmart' ) => '',
|
|
esc_html__( 'Left', 'woodmart' ) => 'left',
|
|
esc_html__( 'Center', 'woodmart' ) => 'center',
|
|
esc_html__( 'Right', 'woodmart' ) => 'right',
|
|
),
|
|
'edit_field_class' => 'vc_col-sm-6 vc_column',
|
|
);
|
|
|
|
vc_add_param( 'vc_column', $woodmart_text_align );
|
|
vc_add_param( 'vc_column_inner', $woodmart_text_align );
|
|
|
|
/**
|
|
* ------------------------------------------------------------------------------------------------
|
|
* Reset margins
|
|
* ------------------------------------------------------------------------------------------------
|
|
*/
|
|
|
|
$mobile_reset_margin = array(
|
|
'type' => 'woodmart_switch',
|
|
'heading' => esc_html__( 'Reset margin on mobile', 'woodmart' ),
|
|
'param_name' => 'mobile_reset_margin',
|
|
'group' => esc_html__( 'Woodmart Extras', 'woodmart' ),
|
|
'true_state' => 'yes',
|
|
'false_state' => 'no',
|
|
'default' => 'no',
|
|
'edit_field_class' => 'vc_col-sm-6 vc_column',
|
|
);
|
|
|
|
vc_add_param( 'vc_column', $mobile_reset_margin );
|
|
|
|
$tablet_reset_margin = array(
|
|
'type' => 'woodmart_switch',
|
|
'heading' => esc_html__( 'Reset margin on tablet', 'woodmart' ),
|
|
'param_name' => 'tablet_reset_margin',
|
|
'group' => esc_html__( 'Woodmart Extras', 'woodmart' ),
|
|
'true_state' => 'yes',
|
|
'false_state' => 'no',
|
|
'default' => 'no',
|
|
'edit_field_class' => 'vc_col-sm-6 vc_column',
|
|
);
|
|
|
|
vc_add_param( 'vc_column', $tablet_reset_margin );
|
|
}
|
|
}
|
|
|
|
if ( ! function_exists( 'woodmart_get_color_scheme_param' ) ) {
|
|
function woodmart_get_color_scheme_param( $column = false ) {
|
|
$color_scheme = array(
|
|
'type' => 'woodmart_button_set',
|
|
'heading' => esc_html__( 'Color Scheme', 'woodmart' ),
|
|
'param_name' => 'woodmart_color_scheme',
|
|
'value' => array(
|
|
esc_html__( 'Inherit', 'woodmart' ) => '',
|
|
esc_html__( 'Light', 'woodmart' ) => 'light',
|
|
esc_html__( 'Dark', 'woodmart' ) => 'dark',
|
|
),
|
|
);
|
|
|
|
if ( $column ) {
|
|
$color_scheme['edit_field_class'] = 'vc_col-sm-' . $column . ' vc_column';
|
|
}
|
|
return apply_filters( 'woodmart_get_color_scheme_param', $color_scheme );
|
|
}
|
|
}
|
|
|
|
// **********************************************************************//
|
|
// Add custom animations to WPB Composer
|
|
// **********************************************************************//
|
|
|
|
if ( ! function_exists( 'woodmart_add_css_animation' ) ) {
|
|
function woodmart_add_css_animation( $animations ) {
|
|
$animations[] = array(
|
|
'label' => esc_html__( 'Woodmart Animations', 'woodmart' ),
|
|
'values' => array(
|
|
esc_html__( 'Slide from top', 'woodmart' ) => array(
|
|
'value' => 'wd-slide-from-top',
|
|
'type' => 'in',
|
|
),
|
|
esc_html__( 'Slide from bottom', 'woodmart' ) => array(
|
|
'value' => 'wd-slide-from-bottom',
|
|
'type' => 'in',
|
|
),
|
|
esc_html__( 'Slide from left', 'woodmart' ) => array(
|
|
'value' => 'wd-slide-from-left',
|
|
'type' => 'in',
|
|
),
|
|
esc_html__( 'Slide from right', 'woodmart' ) => array(
|
|
'value' => 'wd-slide-from-right',
|
|
'type' => 'in',
|
|
),
|
|
esc_html__( 'Right flip Y', 'woodmart' ) => array(
|
|
'value' => 'wd-right-flip-y',
|
|
'type' => 'in',
|
|
),
|
|
esc_html__( 'Left flip Y', 'woodmart' ) => array(
|
|
'value' => 'wd-left-flip-y',
|
|
'type' => 'in',
|
|
),
|
|
esc_html__( 'Top flip X', 'woodmart' ) => array(
|
|
'value' => 'wd-top-flip-x',
|
|
'type' => 'in',
|
|
),
|
|
esc_html__( 'Bottom flip X', 'woodmart' ) => array(
|
|
'value' => 'wd-bottom-flip-x',
|
|
'type' => 'in',
|
|
),
|
|
esc_html__( 'Zoom in', 'woodmart' ) => array(
|
|
'value' => 'wd-zoom-in',
|
|
'type' => 'in',
|
|
),
|
|
esc_html__( 'Rotate Z', 'woodmart' ) => array(
|
|
'value' => 'wd-rotate-z',
|
|
'type' => 'in',
|
|
),
|
|
),
|
|
);
|
|
|
|
return $animations;
|
|
}
|
|
|
|
add_action( 'vc_param_animation_style_list', 'woodmart_add_css_animation', 1000 );
|
|
}
|
|
|