File: /home/adventp/www/wp-content/themes/brooklyn/vc/vc-params.php
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
/* check if Visual Composer is installed */
if( ! defined( 'WPB_VC_VERSION' ) ) {
return;
}
/**
* Extract VC CSS Declaration from String
*
* @param $css
*
* @since 4.5.4
* @return bool / array
*/
if( !function_exists('ut_vc_css_to_array') ) {
function ut_vc_css_to_array( $css ) {
preg_match_all('/(.+?)\s?\{\s?(.+?)\s?\}/', $css, $matches);
if( !empty( $matches[2][0] ) ) {
$styles = array_filter( explode( ";", $matches[2][0] ) );
$new_styles = array();
foreach ( $styles as $val ) {
$attr = explode( ':', $val, 2 );
if( !empty( $attr[0] ) && !empty($attr[1]) )
$new_styles[$attr[0]] = $attr[1];
}
return $new_styles;
}
return false;
}
}
/**
* Extract CSS Property from string
*
* @param $subject
* @param $property
* @param bool|false $strict
*
* @since 4.5
* @return bool
*/
function ut_extract_custom_css_property( $subject, $property, $strict = false ) {
$styles = array();
$pattern = '/\{([^\}]*?)\}/i';
preg_match( $pattern, $subject, $styles );
if ( array_key_exists( 1, $styles ) ) {
$styles = explode( ';', $styles[1] );
}
$new_styles = array();
foreach ( $styles as $val ) {
$attr = explode( ':', $val );
if( isset( $attr[0] ) && $attr[0] == $property ) {
if( $property == 'background-image' ) {
$url = wp_extract_urls( $val );
if( !empty( $url[0] ) ) {
return $url[0];
}
}
return $val;
}
}
return false;
}
/**
* Removes a CSS Attribute from CSS Array
*
* @access public
* @since 4.2.5
* @version 1.0.0
*/
if( !function_exists('ut_clean_up_vc_css_array') ) {
function ut_clean_up_vc_css_array( $array, $value ) {
foreach( $array as $key => $val ) {
if (strpos($val, $value) !== false) {
unset( $array[$key] );
}
}
return $array;
}
}
/**
* Add Text Transform for Custom Heading Shortcode
*
* @return array
*
* @access private
* @since 4.0
*/
function _vc_add_text_transform_to_custom_heading() {
return array(
'type' => 'dropdown',
'heading' => esc_html__( 'Text Transform', 'unitedthemes' ),
'param_name' => 'text_transform',
'value' => array(
esc_html__( 'Select Text Transform' , 'unitedthemes' ) => '',
esc_html__( 'None' , 'unitedthemes' ) => 'none',
esc_html__( 'Capitalize' , 'unitedthemes' ) => 'capitalize',
esc_html__( 'Inherit' , 'unitedthemes' ) => 'inherit',
esc_html__( 'Lowercase' , 'unitedthemes' ) => 'lowercase',
esc_html__( 'Uppercase' , 'unitedthemes' ) => 'uppercase'
),
);
}
vc_add_param( 'vc_custom_heading', _vc_add_text_transform_to_custom_heading() );
/**
* Add Force Padding Option
*
* @return array
*
* @access private
* @since 4.9.5.1
*/
function _vc_add_force_padding_to_vc() {
return array(
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Force Padding?', 'unitedthemes' ),
'description' => esc_html__( 'Once activated this option will overwrite the padding Settings in "Design Options"', 'unitedthemes' ),
'param_name' => 'force_padding',
'value' => array(
esc_html__( 'off', 'unitedthemes' ) => 'off',
esc_html__( 'on', 'unitedthemes' ) => 'on'
),
'group' => 'Force Padding'
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Force Padding Desktop', 'unitedthemes' ),
'param_name' => 'force_padding_desktop',
'value' => array(
'default' => '0',
'min' => '1',
'max' => '10',
'step' => '1',
'unit' => '%'
),
'group' => 'Force Padding',
'dependency' => array(
'element' => 'force_padding',
'value' => 'on'
)
),
array(
'type' => 'checkbox',
'heading' => __( 'Overwrite Padding Size on Tablet?', 'unitedthemes' ),
'param_name' => 'force_padding_tablet_inherit',
'edit_field_class' => 'vc_col-sm-4',
'value' => array( __( 'Yes', 'unitedthemes' ) => 'yes' ),
'group' => 'Force Padding',
'dependency' => array(
'element' => 'force_padding',
'value' => 'on'
)
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Force Padding Tablet', 'unitedthemes' ),
'param_name' => 'force_padding_tablet',
'edit_field_class' => 'vc_col-sm-8 ut-vc-dependent-hidden-opaque',
'value' => array(
'default' => '0',
'min' => '1',
'max' => '10',
'step' => '1',
'unit' => '%'
),
'group' => 'Force Padding',
'dependency' => array(
'element' => 'force_padding_tablet_inherit',
'not_empty' => true
)
),
array(
'type' => 'checkbox',
'heading' => __( 'Overwrite Padding Size on Mobile?', 'unitedthemes' ),
'param_name' => 'force_padding_mobile_inherit',
'edit_field_class' => 'vc_col-sm-4',
'value' => array( __( 'Yes', 'unitedthemes' ) => 'yes' ),
'group' => 'Force Padding',
'dependency' => array(
'element' => 'force_padding',
'value' => 'on'
)
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Force Padding Mobile', 'unitedthemes' ),
'param_name' => 'force_padding_mobile',
'edit_field_class' => 'vc_col-sm-8 ut-vc-dependent-hidden-opaque',
'value' => array(
'default' => '0',
'min' => '1',
'max' => '10',
'step' => '1',
'unit' => '%'
),
'group' => 'Force Padding',
'dependency' => array(
'element' => 'force_padding_mobile_inherit',
'not_empty' => true
)
),
);
}
vc_add_params( 'vc_column', _vc_add_force_padding_to_vc() );
vc_add_params( 'vc_column_inner', _vc_add_force_padding_to_vc() );
/**
* Add Background Distortion Effect
*
* @return array
*
* @access private
* @since 4.6.2
*/
function _vc_add_background_distortion_effect() {
return array (
array(
'type' => 'dropdown',
'heading' => __( 'Distortion Hover Effect', 'unitedthemes' ),
'description' => __( 'Add distortion hover effect to background. This requires 2 images! Please make sure to upload to images.', 'unitedthemes' ),
'param_name' => 'distortion',
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!', 'unitedthemes' ) => 'on',
),
'group' => 'Background Distortion',
),
array(
'type' => 'attach_image',
'heading' => esc_html__( 'First Background Image. This one will display by default!', 'unitedthemes' ),
'param_name' => 'background_distortion_1',
'edit_field_class' => 'vc_col-sm-6',
'group' => 'Background Distortion',
'dependency' => array(
'element' => 'distortion',
'value' => array('on')
)
),
array(
'type' => 'attach_image',
'heading' => esc_html__( 'Second Background Image. This one will display on mouse over!', 'unitedthemes' ),
'param_name' => 'background_distortion_2',
'edit_field_class' => 'vc_col-sm-6',
'group' => 'Background Distortion',
'dependency' => array(
'element' => 'distortion',
'value' => array('on')
)
),
array(
'type' => 'dropdown',
'heading' => __( 'Distortion Effect', 'unitedthemes' ),
'param_name' => 'distortion_effect',
'value' => array(
esc_html__( 'Mosaic', 'js_composer' ) => '1',
esc_html__( 'Scales', 'js_composer' ) => '2',
esc_html__( 'Canvas', 'js_composer' ) => '3',
esc_html__( 'Clouds', 'js_composer' ) => '4',
esc_html__( 'Stripes', 'js_composer' ) => '5',
esc_html__( 'Wood', 'js_composer' ) => '6',
esc_html__( 'Leather', 'js_composer' ) => '7',
esc_html__( 'Particles','js_composer' ) => '8',
esc_html__( 'Concreate','js_composer' ) => '9',
esc_html__( 'Patchwork','js_composer' ) => '10',
esc_html__( 'ZigZag', 'js_composer' ) => '11',
esc_html__( 'Waves', 'js_composer' ) => '12',
esc_html__( 'Digital', 'js_composer' ) => '13',
esc_html__( 'Abstract', 'unitedthemes' ) => '14',
esc_html__( 'Zebra', 'js_composer' ) => '15',
esc_html__( 'Disco', 'js_composer' ) => '16',
),
'group' => 'Background Distortion',
'dependency' => array(
'element' => 'distortion',
'value' => array('on')
)
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Intensity', 'unitedthemes' ),
'description' => esc_html__( 'Using negative values will also invert the animation direction.', 'unitedthemes' ),
'param_name' => 'distortion_intensity',
'value' => array(
'default' => '10',
'min' => '-20',
'max' => '20',
'step' => '1',
'unit' => ''
),
'group' => 'Background Distortion',
'dependency' => array(
'element' => 'distortion',
'value' => array('on')
)
),
array(
'type' => 'dropdown',
'heading' => __( 'Animation Easing Effect', 'unitedthemes' ),
'param_name' => 'distortion_ease',
'value' => array(
esc_html__( 'none', 'unitedthemes' ) => 'none',
esc_html__( 'Sine', 'unitedthemes' ) => 'Sine.easeOut',
esc_html__( 'Circ', 'unitedthemes' ) => 'Circ.easeOut',
esc_html__( 'Power2', 'unitedthemes' ) => 'Power2.easeOut',
esc_html__( 'Elastic', 'unitedthemes' ) => 'Elastic.easeOut',
),
'group' => 'Background Distortion',
'dependency' => array(
'element' => 'distortion',
'value' => array('on')
)
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Speed In', 'unitedthemes' ),
'description' => __( 'Lower value = quicker. Higher value = slower.', 'unitedthemes' ),
'param_name' => 'distortion_speed_in',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
'default' => '100',
'min' => '10',
'max' => '400',
'step' => '10',
'unit' => ''
),
'group' => 'Background Distortion',
'dependency' => array(
'element' => 'distortion',
'value' => array('on')
)
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Speed Out', 'unitedthemes' ),
'description' => __( 'Lower value = quicker. Higher value = slower.', 'unitedthemes' ),
'param_name' => 'distortion_speed_out',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
'default' => '100',
'min' => '10',
'max' => '400',
'step' => '10',
'unit' => ''
),
'group' => 'Background Distortion',
'dependency' => array(
'element' => 'distortion',
'value' => array('on')
)
),
);
}
vc_add_params( 'vc_row', _vc_add_background_distortion_effect() );
vc_add_params( 'vc_column', _vc_add_background_distortion_effect() );
vc_add_params( 'vc_section', _vc_add_background_distortion_effect() );
/**
* Add Allows Columns animate when parent is hovered
*
* @return array
*
* @access private
* @since 4.6.3
*/
function _vc_early_background_distortion_call() {
return array (
array(
'type' => 'dropdown',
'heading' => __( 'Early Distortion Effect Animation', 'unitedthemes' ),
'description' => __( 'By default the distortion effec animates when users move their mouse over the column. By activating this option the animation starts when moving the mouse over the outer row. This way you can create for example split sections, where users move their mouse over a textarea on the right and the image to the left animates as well.', 'unitedthemes' ),
'param_name' => 'early_distortion_effect',
'value' => array(
esc_html__( 'no, thanks!', 'js_composer' ) => 'off',
esc_html__( 'yes, please!', 'js_composer' ) => 'on',
),
'group' => 'Background Distortion',
'dependency' => array(
'element' => 'distortion',
'value' => array('on')
)
)
);
}
vc_add_params( 'vc_column', _vc_early_background_distortion_call() );
/**
* Reveal FX
*
* @return array
*
* @access private
* @since 4.9.5.2
*/
function _vc_add_reveal_fx_effect() {
return array(
array(
'type' => 'dropdown',
'heading' => __( 'Reveal FX', 'unitedthemes' ),
'description' => __( 'Add Reveal FX to Element.', 'unitedthemes' ),
'group' => 'Reveal FX',
'param_name' => 'reveal_fx',
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!', 'unitedthemes' ) => 'on',
),
),
array(
'type' => 'dropdown',
'heading' => __( 'Reveal FX Direction', 'unitedthemes' ),
'group' => 'Reveal FX',
'param_name' => 'reveal_direction',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
esc_html__( 'Left to Right', 'unitedthemes' ) => 'ltor',
esc_html__( 'Right to Left', 'unitedthemes' ) => 'rtol',
esc_html__( 'Top to Bottom', 'unitedthemes' ) => 'ttob',
esc_html__( 'Bottom to Top', 'unitedthemes' ) => 'btot'
),
'dependency' => array(
'element' => 'reveal_fx',
'value' => 'on',
),
),
array(
'type' => 'dropdown',
'heading' => __( 'Reveal FX Speed', 'unitedthemes' ),
'description' => sprintf( esc_html__( '%s = 1800ms, %s = 2800ms, %s = 1000ms', 'unitedthemes' ), '<strong>' . esc_html__( 'Default', 'unitedthemes' ) . '</strong>', '<strong>' . esc_html__( 'Slow', 'unitedthemes' ) . '</strong>', '<strong>' . esc_html__( 'Fast', 'unitedthemes' ) . '</strong>' ),
'group' => 'Reveal FX',
'param_name' => 'reveal_speed',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
esc_html__( 'Default', 'unitedthemes' ) => 'default',
esc_html__( 'Slow', 'unitedthemes' ) => 'slow',
esc_html__( 'Fast', 'unitedthemes' ) => 'fast',
),
'dependency' => array(
'element' => 'reveal_fx',
'value' => 'on',
),
),
array(
'type' => 'dropdown',
'heading' => __( 'Reveal in Front or Back', 'unitedthemes' ),
'description' => __( 'Reveal in Front or Back', 'unitedthemes' ),
'param_name' => 'reveal_position',
'edit_field_class' => 'vc_col-sm-6',
'group' => 'Reveal FX',
'value' => array(
esc_html__( 'in front', 'unitedthemes' ) => 'front',
esc_html__( 'in back', 'unitedthemes' ) => 'back',
),
'dependency' => array(
'element' => 'reveal_fx',
'value' => 'on',
),
),
array(
'type' => 'dropdown',
'heading' => __( 'Reveal Layer', 'unitedthemes' ),
'description' => __( 'Amount of Layers used for Reveal', 'unitedthemes' ),
'group' => 'Reveal FX',
'param_name' => 'reveal_layers',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
esc_html__( 'Double Layer Reveal', 'unitedthemes' ) => 'double',
esc_html__( 'Single Layer Reveal', 'unitedthemes' ) => 'single'
),
'dependency' => array(
'element' => 'reveal_fx',
'value' => 'on',
),
),
array(
'type' => 'dropdown',
'heading' => __( 'Reveal FX Easing', 'unitedthemes' ),
'group' => 'Reveal FX',
'param_name' => 'reveal_fx_easing',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
esc_html__( 'quantic', 'unitedthemes' ) => 'quantic',
esc_html__( 'ease', 'unitedthemes' ) => 'ease',
esc_html__( 'ease in', 'unitedthemes' ) => 'ease-in',
esc_html__( 'ease out', 'unitedthemes' ) => 'ease-out',
esc_html__( 'ease in out', 'unitedthemes' ) => 'ease-in-out'
),
'dependency' => array(
'element' => 'reveal_position',
'value' => 'back',
),
),
array(
'type' => 'dropdown',
'heading' => __( 'Reveal Animation Type', 'unitedthemes' ),
'group' => 'Reveal FX',
'param_name' => 'reveal_fx_animation',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
esc_html__( 'animate in and out', 'unitedthemes' ) => 'in_out',
esc_html__( 'animate in and stay', 'unitedthemes' ) => 'in',
),
'dependency' => array(
'element' => 'reveal_position',
'value' => 'back',
),
),
array(
'type' => 'dropdown',
'heading' => __( 'Reveal FX Appear Offset', 'unitedthemes' ),
'group' => 'Reveal FX',
'description' => __( 'This will trigger the effect when % of the item is visible on the screen', 'unitedthemes' ),
'param_name' => 'reveal_appear_offset',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
esc_html__( 'None ( 10% )', 'unitedthemes' ) => 'none',
esc_html__( 'Quarter ( 25% )', 'unitedthemes' ) => 'quarter',
esc_html__( 'Partial ( 33% )', 'unitedthemes' ) => 'partial',
esc_html__( 'Auto ( 50% )', 'unitedthemes' ) => 'auto',
esc_html__( 'Almost ( 70% )', 'unitedthemes' ) => 'almost',
esc_html__( 'Full ( 100% )', 'unitedthemes' ) => 'full',
),
'dependency' => array(
'element' => 'reveal_fx',
'value' => 'on',
),
),
array(
'type' => 'gradient_picker',
'heading' => esc_html__( 'Reveal FX Color Part 1', 'unitedthemes' ),
'param_name' => 'reveal_fx_color_1',
'group' => 'Reveal FX',
'dependency' => array(
'element' => 'reveal_layers',
'value' => array( 'single', 'double' ),
),
),
array(
'type' => 'gradient_picker',
'heading' => esc_html__( 'Reveal FX Color Part 2', 'unitedthemes' ),
'param_name' => 'reveal_fx_color_2',
'group' => 'Reveal FX',
'dependency' => array(
'element' => 'reveal_layers',
'value' => array( 'double' ),
),
)
);
}
vc_add_params( 'vc_row', _vc_add_reveal_fx_effect() );
vc_add_params( 'vc_row_inner', _vc_add_reveal_fx_effect() );
vc_add_params( 'vc_column', _vc_add_reveal_fx_effect() );
vc_add_params( 'vc_column_inner', _vc_add_reveal_fx_effect() );
vc_add_params( 'vc_section', _vc_add_reveal_fx_effect() );
if( !class_exists( 'UT_Distortion_Background' ) ) {
class UT_Distortion_Background {
/*
* Default Image ID
*/
public $image_default;
/*
* Hover Image ID
*/
public $image_hover;
/*
* Distortion Effect
*/
public $displacement;
/*
* Config Attributes
*/
public $atts;
function __construct( $atts ) {
$this->atts = $atts;
}
public function html(){
// we need 2 images
if( empty( $this->image_default ) || empty( $this->image_hover ) ) {
return;
}
extract( $this->atts );
$attributes = array();
if( !empty( $distortion_intensity ) ) {
$attributes['data-intensity'] = -( $distortion_intensity / 100 );
}
if( !empty( $distortion_ease ) ) {
$attributes['data-easing'] = $distortion_ease;
}
if( !empty( $distortion_speed_in ) ) {
$attributes['data-speedIn'] = $distortion_speed_in / 100;
}
if( !empty( $distortion_speed_out ) ) {
$attributes['data-speedOut'] = $distortion_speed_out / 100;
}
$attributes = implode(' ', array_map(
function ($v, $k) { return sprintf("%s=\"%s\"", $k, $v); },
$attributes,
array_keys( $attributes )
) );
$file_type = $this->displacement == 4 || $this->displacement == 5 ? '.png' : '.jpg';
ob_start(); ?>
<div class="ut-distortion-effect-container" data-appear-top-offset="-500" data-displacement="<?php echo THEME_WEB_ROOT; ?>/images/displacement/<?php echo esc_attr( $this->displacement . $file_type ); ?>" <?php echo ut_safe_output( $attributes ); ?>>
<img data-src="<?php echo esc_url( $this->image_default[0] ); ?>" width="<?php echo esc_attr( $this->image_default[1] ); ?>" height="<?php echo esc_attr( $this->image_default[2] ); ?>" alt="Image"/>
<img data-src="<?php echo esc_url( $this->image_hover[0] ); ?>" width="<?php echo esc_attr( $this->image_hover[1] ); ?>" height="<?php echo esc_attr( $this->image_hover[2] ); ?>" alt="Image"/>
</div>
<?php
return ob_get_clean();
}
public function set_default_image( $id ) {
$this->image_default = wp_get_attachment_image_src( $id, 'full' );
}
public function set_hover_image( $id ) {
$this->image_hover = wp_get_attachment_image_src( $id, 'full' );
}
public function set_effect( $id ) {
$this->displacement = $id;
}
}
}
/**
* Add Offset Anchors
*
* @return array
*
* @access private
* @since 4.3
*/
function _vc_add_section_anchor_to_vc_row() {
return array(
array(
'type' => 'section_anchor',
'heading' => esc_html__( 'Linking ID', 'unitedthemes' ),
'description' => sprintf( __( 'Enter ID (Note: make sure it is unique and valid according to <a href="%s" target="_blank">w3c specification</a>).', 'unitedthemes' ), 'http://www.w3schools.com/tags/att_global_id.asp' ),
'param_name' => 'bklyn_section_anchor_id',
'group' => 'Linking'
),
);
}
vc_add_params( 'vc_row', _vc_add_section_anchor_to_vc_row() );
vc_add_params( 'vc_section', _vc_add_section_anchor_to_vc_row() );
/**
* Enhance VC Section
*
* @return array
*
* @access private
* @since 4.3.0
*/
function _vc_add_enhance_vc_section() {
return array(
'type' => 'dropdown',
'heading' => __( 'Section stretch', 'unitedthemes' ),
'param_name' => 'full_width',
'value' => array(
esc_html__( 'Default', 'unitedthemes' ) => '',
esc_html__( 'Stretch section', 'unitedthemes' ) => 'stretch_row',
esc_html__( 'Stretch section and content', 'unitedthemes' ) => 'stretch_row_content',
),
'std' => 'stretch_row',
'description' => __( 'Select stretching options for section and content (Note: stretched may not work properly if parent container has "overflow: hidden" CSS property).', 'unitedthemes' ),
);
}
vc_add_param( 'vc_section', _vc_add_enhance_vc_section() );
/**
* Enhance VC Row
*
* @return array
*
* @access private
* @since 4.3.0
*/
function _vc_add_enhance_vc_row() {
return array(
'type' => 'dropdown',
'heading' => __( 'Row stretch', 'unitedthemes' ),
'param_name' => 'full_width',
'value' => array(
esc_html__( 'Default', 'unitedthemes' ) => '',
esc_html__( 'Stretch row', 'unitedthemes' ) => 'stretch_row',
esc_html__( 'Stretch row and content', 'unitedthemes' ) => 'stretch_row_content',
esc_html__( 'Stretch row and content (no paddings)', 'unitedthemes' ) => 'stretch_row_content_no_spaces',
),
'std' => 'stretch_row',
'description' => __( 'Select stretching options for row and content (Note: stretched may not work properly if parent container has "overflow: hidden" CSS property).', 'unitedthemes' ),
);
}
vc_add_param( 'vc_row', _vc_add_enhance_vc_row() );
/*
* Overflow visible
*
* @return array
* @since 4.9.3
*/
function _vc_add_overflow_visible() {
return array(
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Deactivate Overflow Hidden on Desktop?', 'unitedthemes' ),
'description' => esc_html__( 'By default, sections and rows do have an overflow hidden. This can cause elements to be cut off especially when animated. Using this option will turn off the overflow.', 'unitedthemes' ),
'param_name' => 'overflow_visible',
'edit_field_class' => 'vc_col-sm-4',
'weight' => 1,
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!', 'unitedthemes' ) => 'true'
)
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Deactivate Overflow Hidden on Tablets?', 'unitedthemes' ),
'param_name' => 'overflow_visible_tablet',
'edit_field_class' => 'vc_col-sm-4',
'weight' => 1,
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!', 'unitedthemes' ) => 'true'
)
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Deactivate Overflow Hidden on Mobiles?', 'unitedthemes' ),
'param_name' => 'overflow_visible_mobile',
'edit_field_class' => 'vc_col-sm-4',
'weight' => 1,
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!', 'unitedthemes' ) => 'true'
)
)
);
}
vc_add_params( 'vc_section', _vc_add_overflow_visible() );
vc_add_params( 'vc_row', _vc_add_overflow_visible() );
function _vc_add_overflow_column() {
return array(
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Activate Overflow Hidden on Desktop?', 'unitedthemes' ),
'description' => esc_html__( 'By default, column doesn\'t have overflow. Using this option will turn on the overflow.', 'unitedthemes' ),
'param_name' => 'overflow_visible',
'edit_field_class' => 'vc_col-sm-4',
'weight' => 1,
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!', 'unitedthemes' ) => 'true'
)
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Activate Overflow Hidden on Tablets?', 'unitedthemes' ),
'param_name' => 'overflow_visible_tablet',
'edit_field_class' => 'vc_col-sm-4',
'weight' => 1,
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!', 'unitedthemes' ) => 'true'
)
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Activate Overflow Hidden on Mobiles?', 'unitedthemes' ),
'param_name' => 'overflow_visible_mobile',
'edit_field_class' => 'vc_col-sm-4',
'weight' => 1,
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!', 'unitedthemes' ) => 'true'
)
)
);
}
vc_add_params( 'vc_column', _vc_add_overflow_column() );
vc_add_params( 'vc_column_inner', _vc_add_overflow_column() );
/**
* Add Video Settings to VC Section and Row
*
* @return array
*
* @access private
* @since 4.5.4
*/
// remove old param since we support youtube and vimeo
vc_remove_param( "vc_section", "video_bg" );
vc_remove_param( "vc_section", "video_bg_url" );
vc_remove_param( "vc_section", "video_bg_parallax" );
vc_remove_param( "vc_section", "parallax_speed_video" );
vc_remove_param( "vc_row", "video_bg" );
vc_remove_param( "vc_row", "video_bg_url" );
vc_remove_param( "vc_row", "video_bg_parallax" );
vc_remove_param( "vc_row", "parallax_speed_video" );
function _vc_add_video_settings_to_vc() {
return array(
array(
'type' => 'checkbox',
'heading' => __( 'Activate Video Background?', 'unitedthemes' ),
'param_name' => 'video_bg',
'description' => __( 'If checked, video will be used as section background. If Parallax is activated in "Design Options" the video will parallax as well.', 'unitedthemes' ),
'value' => array( __( 'Yes', 'unitedthemes' ) => 'yes' ),
'group' => 'Video'
),
array(
'type' => 'textfield',
'heading' => __( 'Video Link', 'unitedthemes' ),
'param_name' => 'video_bg_url',
'description' => __( 'Add Video Link. Can be youtube or vimeo. Only insert the video URL not the embed code.', 'unitedthemes' ),
'group' => 'Video',
'dependency' => array(
'element' => 'video_bg',
'not_empty' => true,
),
),
);
}
vc_add_params( 'vc_row', _vc_add_video_settings_to_vc() );
vc_add_params( 'vc_section', _vc_add_video_settings_to_vc() );
/**
* Add Overlay Settings to VC Row
*
* @return array
*
* @access private
* @since 4.0
*/
function _vc_add_overlay_settings_to_vc_row() {
return array(
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Activate Overlay?', 'unitedthemes' ),
'param_name' => 'bklyn_overlay',
'value' => array(
esc_html__( 'off', 'unitedthemes' ) => '',
esc_html__( 'on', 'unitedthemes' ) => 'true'
),
'group' => 'Overlay'
),
array(
'type' => 'gradient_picker',
'heading' => esc_html__( 'Overlay Color', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_color',
'group' => 'Overlay',
'dependency' => array(
'element' => 'bklyn_overlay',
'value' => 'true',
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Activate Overlay Pattern?', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_pattern',
'value' => array(
esc_html__( 'off', 'unitedthemes' ) => '',
esc_html__( 'on', 'unitedthemes' ) => 'true'
),
'group' => 'Overlay',
'dependency' => array(
'element' => 'bklyn_overlay',
'value' => 'true',
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Overlay Style', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_pattern_style',
'group' => 'Overlay',
'value' => array(
esc_html__( 'Style One' , 'unitedthemes' ) => 'bklyn-style-one',
esc_html__( 'Style Two' , 'unitedthemes' ) => 'bklyn-style-two',
esc_html__( 'Style Three' , 'unitedthemes' ) => 'bklyn-style-three',
esc_html__( 'Style For (Circuit Board)' , 'unitedthemes' ) => 'bklyn-style-four',
esc_html__( 'Style Five (Black Orchid)' , 'unitedthemes' ) => 'bklyn-style-five',
esc_html__( 'Style Six (Dark Dots)' , 'unitedthemes' ) => 'bklyn-style-six',
),
'dependency' => array(
'element' => 'bklyn_overlay_pattern',
'value' => 'true',
)
),
);
}
vc_add_params( 'vc_row', _vc_add_overlay_settings_to_vc_row() );
vc_add_params( 'vc_section', _vc_add_overlay_settings_to_vc_row() );
vc_add_params( 'vc_column', _vc_add_overlay_settings_to_vc_row() );
vc_add_params( 'vc_column_inner', _vc_add_overlay_settings_to_vc_row() );
// other shortcodes with overlay support
vc_add_params( 'ut_hover_box_back', _vc_add_overlay_settings_to_vc_row() );
vc_add_params( 'ut_hover_box_front', _vc_add_overlay_settings_to_vc_row() );
/**
* Add Overlay Effect Settings to VC
*
* @return array
*
* @access private
* @since 4.6.1
*/
function _vc_add_overlay_effect_settings_to_vc_row() {
return array(
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Activate Special Effects?', 'unitedthemes' ),
'description' => esc_html__( 'A bunch of special effects ready to use! Note that effects marked as non transparent will cover background images or background color set on this element.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect',
'value' => array(
esc_html__( 'off', 'unitedthemes' ) => '',
esc_html__( 'Particle Effect (transparent)', 'unitedthemes' ) => 'true', // old particle effect
esc_html__( 'Aurora Effect (not transparent)', 'unitedthemes' ) => 'aurora',
esc_html__( 'Pipeline Effect (not transparent)', 'unitedthemes' ) => 'pipeline',
esc_html__( 'Shift Effect (not transparent)', 'unitedthemes' ) => 'shift',
esc_html__( 'Swirl Effect (transparent)', 'unitedthemes' ) => 'swirl',
esc_html__( 'Coalesce Effect (transparent)', 'unitedthemes' ) => 'coalesce'
),
'group' => 'Special FX'
),
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'Base Color', 'unitedthemes' ),
'description' => __( 'Select your desired base color.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_base_color',
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect',
'value' => array('aurora', 'pipeline','shift','aurora','coalesce','swirl')
)
),
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'Background Color', 'unitedthemes' ),
'description' => __( 'Select your desired background color. Default is "black"', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_background_color',
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect',
'value' => array('pipeline','shift','aurora')
)
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Color Range', 'unitedthemes' ),
'description' => __( 'The higher the range, the larger the amount of colors generated based on its base color.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_color_range',
'value' => array(
'default' => '10',
'min' => '0',
'max' => '360',
'step' => '1',
'unit' => ''
),
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect',
'value' => array('aurora', 'pipeline','shift','aurora','coalesce','swirl')
)
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Blend Mode', 'unitedthemes' ),
'description' => __( 'Select your desired blend mode.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_blend_mode',
'value' => array(
esc_html__( 'normal', 'unitedthemes' ) => 'normal',
esc_html__( 'multiply', 'unitedthemes' ) => 'multiply',
esc_html__( 'screen', 'unitedthemes' ) => 'screen',
esc_html__( 'darken', 'unitedthemes' ) => 'darken',
esc_html__( 'lighten', 'unitedthemes' ) => 'lighten',
esc_html__( 'color dodge', 'unitedthemes' ) => 'color-dodge',
esc_html__( 'color burn', 'unitedthemes' ) => 'color-burn',
esc_html__( 'hard light', 'unitedthemes' ) => 'hard-light',
esc_html__( 'soft light', 'unitedthemes' ) => 'soft-light',
esc_html__( 'difference', 'unitedthemes' ) => 'difference',
esc_html__( 'exclusion', 'unitedthemes' ) => 'exclusion',
esc_html__( 'hue', 'unitedthemes' ) => 'hue',
esc_html__( 'saturation', 'unitedthemes' ) => 'saturation',
esc_html__( 'color', 'unitedthemes' ) => 'color',
esc_html__( 'luminosity', 'unitedthemes' ) => 'luminosity',
),
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect',
'value' => array('aurora', 'pipeline','shift','aurora','coalesce','swirl','true'),
),
),
/* Particle Effect */
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Number of Particles', 'unitedthemes' ),
'description' => esc_html__( 'The higher the number of particles, the more CPU Performance is needed.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_number',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
'default' => '20',
'min' => '1',
'max' => '200',
'step' => '1',
'unit' => ''
),
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect',
'value' => 'true'
)
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Density of Particles', 'unitedthemes' ),
'description' => esc_html__( 'The space between particles. If you already have a high number of particles, try to avoid lowering this value. It might end up with high CPU Usage.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_density',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
'default' => '800',
'min' => '50',
'max' => '2000',
'step' => '50',
'unit' => ''
),
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect',
'value' => 'true'
)
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Speed of Particles', 'unitedthemes' ),
'description' => esc_html__( 'Animation Speed.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_speed',
'value' => array(
'default' => '5',
'min' => '1',
'max' => '20',
'step' => '1',
'unit' => ''
),
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect',
'value' => 'true'
)
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Particle Shape?', 'unitedthemes' ),
'description' => __( 'Select your desired particle shape.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_particle_shape',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
esc_html__( 'circle', 'unitedthemes' ) => 'circle',
esc_html__( 'star', 'unitedthemes' ) => 'star',
esc_html__( 'triangle', 'unitedthemes' ) => 'triangle',
esc_html__( 'edge', 'unitedthemes' ) => 'edge',
esc_html__( 'polygon', 'unitedthemes' ) => 'polygon',
),
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect',
'value' => 'true',
),
),
array(
'type' => 'checkbox',
'heading' => esc_html__( 'Randomize Particle Colors?', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_particle_color_random',
'edit_field_class' => 'vc_col-sm-3',
'group' => 'Special FX',
'value' => array( __( 'Yes', 'unitedthemes' ) => 'on' ),
'dependency' => array(
'element' => 'bklyn_overlay_effect',
'value' => 'true',
),
),
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'Particle Color', 'unitedthemes' ),
'description' => __( 'Select your desired particle color.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_particle_color',
'edit_field_class' => 'vc_col-sm-3',
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect',
'value' => 'true',
),
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Particle Size', 'unitedthemes' ),
'description' => esc_html__( 'Drag the handle to set the particle size.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_particle_size',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
'default' => '3',
'min' => '0',
'max' => '30',
'step' => '1',
'unit' => ''
),
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect',
'value' => 'true'
)
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Randomize Particle Size?', 'unitedthemes' ),
'description' => __( 'If activated, the selected particle size is the maximum size for particles. Each particle size can vary up to the set particle size.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_randomize_particles',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
esc_html__( 'on', 'unitedthemes' ) => 'true',
esc_html__( 'off', 'unitedthemes' ) => 'false'
),
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect',
'value' => 'true',
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Randomize Particle Opacity?', 'unitedthemes' ),
'description' => __( 'If activated, the particle opacity will be randomly for each particle.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_randomize_opacity',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
esc_html__( 'off', 'unitedthemes' ) => 'false',
esc_html__( 'on', 'unitedthemes' ) => 'true'
),
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect',
'value' => 'true',
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Change Particle Opacity while moving?', 'unitedthemes' ),
'description' => __( 'If activated, the particle opacity will while moving on the screen.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_opacity_animate',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
esc_html__( 'off', 'unitedthemes' ) => 'false',
esc_html__( 'on', 'unitedthemes' ) => 'true'
),
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect',
'value' => 'true',
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Connect Particles?', 'unitedthemes' ),
'description' => __( 'Nearby particles are connecting each other with a thin line.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_connect_particles',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
esc_html__( 'on', 'unitedthemes' ) => 'true',
esc_html__( 'off', 'unitedthemes' ) => 'false'
),
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect',
'value' => 'true',
),
),
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'Particles Line Color', 'unitedthemes' ),
'description' => __( 'Optional line color. Default Colors is white.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_line_color',
'edit_field_class' => 'vc_col-sm-6',
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect',
'value' => 'true',
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Activate Particle Mouse Interaction?', 'unitedthemes' ),
'description' => __( 'If activated particles are interacting with mouse movement and mouse click.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_mouse_interaction',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
esc_html__( 'on', 'unitedthemes' ) => 'true',
esc_html__( 'off', 'unitedthemes' ) => 'false'
),
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect',
'value' => 'true',
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Particle Mouse Interaction', 'unitedthemes' ),
'description' => __( '<strong>Repulse</strong> = Particles are moving away from curser.<br /> <strong>Grab</strong> = Creates a connection between cursor and particles in a specific range.<br /> <strong>Bubble</strong> = Increases all particles to specific size within a given range.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_hover_mode',
'value' => array(
esc_html__( 'repulse', 'unitedthemes' ) => 'repulse',
esc_html__( 'grab', 'unitedthemes' ) => 'grab',
esc_html__( 'bubble', 'unitedthemes' ) => 'bubble',
),
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect_mouse_interaction',
'value' => 'true',
),
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Bubble Size', 'unitedthemes' ),
'description' => esc_html__( 'The size the bubble will increase to.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_hover_bubble_size',
'value' => array(
'default' => '6',
'min' => '0',
'max' => '30',
'step' => '1',
'unit' => ''
),
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect_hover_mode',
'value' => 'bubble'
)
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Activate Boundaries?', 'unitedthemes' ),
'description' => __( 'If activated particles will bounce back instead of leaving the screen.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_activate_boundaries',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
esc_html__( 'on', 'unitedthemes' ) => 'true',
esc_html__( 'off', 'unitedthemes' ) => 'false'
),
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect',
'value' => 'true',
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Particles Moving Direction', 'unitedthemes' ),
'description' => __( 'If set to none, particles will move into all directions randomly. Otherwise they move all into the selected direction.', 'unitedthemes' ),
'param_name' => 'bklyn_overlay_effect_moving_direction',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
esc_html__( 'none', 'unitedthemes' ) => 'none',
esc_html__( 'top', 'unitedthemes' ) => 'top',
esc_html__( 'top right', 'unitedthemes' ) => 'top-right',
esc_html__( 'right', 'unitedthemes' ) => 'right',
esc_html__( 'bottom right', 'unitedthemes' ) => 'bottom-right',
esc_html__( 'bottom', 'unitedthemes' ) => 'bottom',
esc_html__( 'bottom left', 'unitedthemes' ) => 'bottom-left',
esc_html__( 'left', 'unitedthemes' ) => 'left',
esc_html__( 'top left', 'unitedthemes' ) => 'top-left'
),
'group' => 'Special FX',
'dependency' => array(
'element' => 'bklyn_overlay_effect',
'value' => 'true',
),
),
);
}
vc_add_params( 'vc_row', _vc_add_overlay_effect_settings_to_vc_row() );
vc_add_params( 'vc_column', _vc_add_overlay_effect_settings_to_vc_row() );
vc_add_params( 'vc_section', _vc_add_overlay_effect_settings_to_vc_row() );
vc_add_params( 'vc_column_inner', _vc_add_overlay_effect_settings_to_vc_row() );
/**
* Add Box Shadow Settings to VC Elements
*
* @return array
*
* @access private
* @since 4.5
*/
function _vc_add_box_shadow_settings_to_vc() {
return array(
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Add Box Shadow?', 'unitedthemes' ),
'param_name' => 'add_box_shadow',
'value' => array(
esc_html__( 'no', 'unitedthemes' ) => '',
esc_html__( 'yes', 'unitedthemes' ) => 'true'
),
'group' => 'Design Options'
),
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'Shadow Color', 'unitedthemes' ),
'param_name' => 'shadow_color',
'edit_field_class' => 'vc_col-sm-6',
'group' => 'Design Options',
'dependency' => array(
'element' => 'add_box_shadow',
'value' => 'true',
),
),
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'Shadow Hover Color', 'unitedthemes' ),
'param_name' => 'shadow_color_hover',
'edit_field_class' => 'vc_col-sm-6',
'group' => 'Design Options',
'dependency' => array(
'element' => 'add_box_shadow',
'value' => 'true',
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Force Shadow Spacing?', 'unitedthemes' ),
'description' => esc_html__( 'If box shadow is cut off due to overflow issues, please activate this option.', 'unitedthemes' ),
'param_name' => 'add_box_shadow_spacing',
'value' => array(
esc_html__( 'no', 'unitedthemes' ) => '',
esc_html__( 'yes', 'unitedthemes' ) => 'true'
),
'group' => 'Design Options'
),
);
}
vc_add_params( 'vc_column', _vc_add_box_shadow_settings_to_vc() );
vc_add_params( 'vc_column_inner', _vc_add_box_shadow_settings_to_vc() );
/**
* Custom Cursor
*
* @return array
*
* @access private
* @since 4.9.5
*/
if( !function_exists('_vc_get_cursor_skins')) {
function _vc_get_cursor_skins( $inherit = false ) {
if( $inherit ) {
$all_cursor_skins = array(
esc_html__( 'inherit', 'unitedthemes' ) => 'inherit',
esc_html__( 'global', 'unitedthemes' ) => 'global',
esc_html__( 'dark', 'unitedthemes' ) => 'dark',
esc_html__( 'light', 'unitedthemes' ) => 'light',
);
} else {
$all_cursor_skins = array(
esc_html__( 'global', 'unitedthemes' ) => 'global',
esc_html__( 'dark', 'unitedthemes' ) => 'dark',
esc_html__( 'light', 'unitedthemes' ) => 'light',
);
}
$cursor_color_skins = ot_get_option( "ut_custom_cursor_custom_skins" );
if ( ! empty( $cursor_color_skins ) && is_array( $cursor_color_skins ) ) {
foreach ( $cursor_color_skins as $skin ) {
$all_cursor_skins[ $skin['title'] ] = $skin['unique_id'];
}
}
return $all_cursor_skins;
}
}
/**
* Custom Cursor
*
* @return array
*
* @access private
* @since 4.9.5.4
*/
function _vc_add_enhance_section_cursor() {
return array(
array(
'type' => 'dropdown',
'heading' => __( 'Custom Cursor Skin', 'unitedthemes' ),
'description' => __( 'Only applies when custom cursor is active. Check Theme Options > Advanced > Custom Cursor.', 'unitedthemes' ),
'param_name' => 'cursor_skin',
'value' => _vc_get_cursor_skins(),
'group' => __( 'Design Options', 'unitedthemes' )
)
);
}
vc_add_params( 'vc_section', _vc_add_enhance_section_cursor() );
/**
* Custom Cursor
*
* @return array
*
* @access private
* @since 4.9.3
*/
function _vc_add_enhance_cursor() {
return array(
array(
'type' => 'dropdown',
'heading' => __( 'Custom Cursor Skin', 'unitedthemes' ),
'description' => __( 'Only applies when custom cursor is active. Check Theme Options > Advanced > Custom Cursor.', 'unitedthemes' ),
'param_name' => 'cursor_skin',
'value' => _vc_get_cursor_skins( true ),
'group' => __( 'Design Options', 'unitedthemes' )
)
);
}
vc_add_params( 'vc_row', _vc_add_enhance_cursor() );
vc_add_params( 'vc_column', _vc_add_enhance_cursor() );
vc_add_params( 'vc_row_inner', _vc_add_enhance_cursor() );
vc_add_params( 'vc_column_inner', _vc_add_enhance_cursor() );
/**
* VC Parallax Settings
*
* @return array
*
* @access private
* @since 4.5.4
*/
// remove default section parallax params
vc_remove_param( "vc_section", "parallax" );
vc_remove_param( "vc_section", "parallax_image" );
vc_remove_param( "vc_section", "parallax_speed_bg" );
// remove default row parallax params
vc_remove_param( "vc_row", "parallax" );
vc_remove_param( "vc_row", "parallax_image" );
vc_remove_param( "vc_row", "parallax_speed_bg" );
// remove default column parallax params
vc_remove_param( "vc_column", "parallax" );
vc_remove_param( "vc_column", "parallax_image" );
vc_remove_param( "vc_column", "parallax_speed_bg" );
// remove default column video parallax params
vc_remove_param( "vc_column", "video_bg" );
vc_remove_param( "vc_column", "video_bg_url" );
vc_remove_param( "vc_column", "video_bg_parallax" );
vc_remove_param( "vc_column", "parallax_speed_video" );
function _vc_add_enhance_vc_parallax() {
return array(
array(
'type' => 'dropdown',
'heading' => __( 'Parallax', 'unitedthemes' ),
'description' => __( 'Add parallax type background.', 'unitedthemes' ),
'param_name' => 'parallax',
'value' => array(
esc_html__( 'None', 'unitedthemes' ) => '',
esc_html__( 'Simple', 'unitedthemes' ) => 'content-moving',
esc_html__( 'Zoom', 'unitedthemes' ) => 'content-zoom',
esc_html__( 'Zoom + Parallax', 'unitedthemes' ) => 'content-zoom-moving',
),
'group' => 'Design Options',
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Parallax Speed', 'unitedthemes' ),
'description' => esc_html__( '', 'unitedthemes' ),
'param_name' => 'parallax_speed',
'value' => array(
'default' => '3',
'min' => '1',
'max' => '8',
'step' => '1',
'unit' => 'x'
),
'group' => 'Design Options',
'dependency' => array(
'element' => 'parallax',
'value' => array('content-moving')
)
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Parallax Threshold', 'unitedthemes' ),
'description' => __( 'Sometimes it can happen, that an element, which has nearly bypassed the viewport has a small whitegap at the top or bottom. In this case try to reduce this gap with adjusting this value.', 'unitedthemes' ),
'param_name' => 'parallax_threshold',
'value' => array(
'default' => '0',
'min' => '-100',
'max' => '100',
'step' => '1',
'unit' => 'px'
),
'group' => 'Design Options',
'dependency' => array(
'element' => 'parallax',
'value' => array('content-moving')
)
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Parallax Zoom Factor', 'unitedthemes' ),
'param_name' => 'parallax_zoom_factor',
'value' => array(
'default' => '1.3',
'min' => '1',
'max' => '3',
'step' => '0.01',
'unit' => 'x'
),
'group' => 'Design Options',
'dependency' => array(
'element' => 'parallax',
'value' => array( 'content-zoom', 'content-zoom-moving' )
)
),
);
}
vc_add_params( 'vc_section', _vc_add_enhance_vc_parallax() );
vc_add_params( 'vc_row', _vc_add_enhance_vc_parallax() );
/**
* Add Background Settings to VC Row
*
* @return array
*
* @access private
* @since 4.0.3
*/
function _vc_add_background_settings_to_vc_row() {
return array(
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Background Position', 'unitedthemes' ),
'param_name' => 'background_position',
'value' => array(
esc_html__( 'Select Background Position', 'unite' ) => '',
esc_html__( 'left top', 'unite' ) => 'left top',
esc_html__( 'left center', 'unite' ) => 'left center',
esc_html__( 'left bottom', 'unite' ) => 'left bottom',
esc_html__( 'center top', 'unite' ) => 'center top',
esc_html__( 'center center', 'unite' ) => 'center center',
esc_html__( 'center bottom', 'unite' ) => 'center bottom',
esc_html__( 'right top', 'unite' ) => 'right top',
esc_html__( 'right center', 'unite' ) => 'right center',
esc_html__( 'right bottom', 'unite' ) => 'right bottom',
esc_html__( 'Custom Position (Advanced User)', 'unite' ) => 'custom'
),
'group' => 'Design Options'
),
array(
'type' => 'textfield',
'heading' => esc_html__( 'Background Position X (Desktop)', 'unitedthemes' ),
'description' => sprintf( __( 'Learn more about background positions here: <a href="%s" target="_blank">w3c specification</a>.', 'unitedthemes' ), 'https://www.w3schools.com/cssref/pr_background-position.asp' ),
'param_name' => 'background_position_x',
'edit_field_class' => 'vc_col-sm-6',
'dependency' => array(
'element' => 'background_position',
'value' => array('custom')
),
'group' => 'Design Options',
),
array(
'type' => 'textfield',
'heading' => esc_html__( 'Background Position Y (Desktop)', 'unitedthemes' ),
'description' => sprintf( __( 'Learn more about background positions here: <a href="%s" target="_blank">w3c specification</a>.', 'unitedthemes' ), 'https://www.w3schools.com/cssref/pr_background-position.asp' ),
'param_name' => 'background_position_y',
'edit_field_class' => 'vc_col-sm-6',
'dependency' => array(
'element' => 'background_position',
'value' => array('custom')
),
'group' => 'Design Options',
),
array(
'type' => 'textfield',
'heading' => esc_html__( 'Background Position X (Medium Desktop)', 'unitedthemes' ),
'description' => esc_html__( 'Screen width between 1025px and 1600px.', 'unitedthemes' ),
'param_name' => 'background_position_x_medium',
'edit_field_class' => 'vc_col-sm-6',
'dependency' => array(
'element' => 'background_position',
'value' => array('custom')
),
'group' => 'Design Options',
),
array(
'type' => 'textfield',
'heading' => esc_html__( 'Background Position Y (Medium Desktop)', 'unitedthemes' ),
'description' => esc_html__( 'Screen width between 1025px and 1600px.', 'unitedthemes' ),
'param_name' => 'background_position_y_medium',
'edit_field_class' => 'vc_col-sm-6',
'dependency' => array(
'element' => 'background_position',
'value' => array('custom')
),
'group' => 'Design Options',
),
array(
'type' => 'textfield',
'heading' => esc_html__( 'Background Position X (Tablet)', 'unitedthemes' ),
'description' => esc_html__( 'Screen width between 768px and 1024px.', 'unitedthemes' ),
'param_name' => 'background_position_x_tablet',
'edit_field_class' => 'vc_col-sm-6',
'dependency' => array(
'element' => 'background_position',
'value' => array('custom')
),
'group' => 'Design Options',
),
array(
'type' => 'textfield',
'heading' => esc_html__( 'Background Position Y (Tablet)', 'unitedthemes' ),
'description' => esc_html__( 'Screen width between 768px and 1024px.', 'unitedthemes' ),
'param_name' => 'background_position_y_tablet',
'edit_field_class' => 'vc_col-sm-6',
'dependency' => array(
'element' => 'background_position',
'value' => array('custom')
),
'group' => 'Design Options',
),
array(
'type' => 'textfield',
'heading' => esc_html__( 'Background Position X (Mobile)', 'unitedthemes' ),
'description' => esc_html__( 'Screen width up to 767px.', 'unitedthemes' ),
'param_name' => 'background_position_x_mobile',
'edit_field_class' => 'vc_col-sm-6',
'dependency' => array(
'element' => 'background_position',
'value' => array('custom')
),
'group' => 'Design Options',
),
array(
'type' => 'textfield',
'heading' => esc_html__( 'Background Position Y (Mobile)', 'unitedthemes' ),
'description' => esc_html__( 'Screen width up to 767px.', 'unitedthemes' ),
'param_name' => 'background_position_y_mobile',
'edit_field_class' => 'vc_col-sm-6',
'dependency' => array(
'element' => 'background_position',
'value' => array('custom')
),
'group' => 'Design Options',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Background Attachment', 'unitedthemes' ),
'param_name' => 'background_attachment',
'value' => array(
esc_html__( 'Select Background Attachment', 'unitedthemes' )=> '',
esc_html__( 'Scroll', 'unitedthemes' ) => 'scroll',
esc_html__( 'Fixed', 'unitedthemes' ) => 'fixed',
esc_html__( 'Inherit', 'unitedthemes' ) => 'inherit',
),
'group' => 'Design Options',
'dependency' => array(
'element' => 'parallax',
'value_not_equal_to' => array('content-moving', 'content-zoom', 'content-zoom-moving')
)
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Hide Background on Medium Desktop?', 'unitedthemes' ),
'param_name' => 'hide_bg_medium',
'edit_field_class' => 'vc_col-sm-4',
'value' => array(
esc_html__( 'no', 'unitedthemes' ) => '',
esc_html__( 'yes', 'unitedthemes' ) => 'true'
),
'group' => 'Design Options'
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Hide Background on Tablet?', 'unitedthemes' ),
'param_name' => 'hide_bg_tablet',
'edit_field_class' => 'vc_col-sm-4',
'value' => array(
esc_html__( 'no', 'unitedthemes' ) => '',
esc_html__( 'yes', 'unitedthemes' ) => 'true'
),
'group' => 'Design Options'
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Hide Background on Mobile?', 'unitedthemes' ),
'param_name' => 'hide_bg_mobile',
'edit_field_class' => 'vc_col-sm-4',
'value' => array(
esc_html__( 'no', 'unitedthemes' ) => '',
esc_html__( 'yes', 'unitedthemes' ) => 'true'
),
'group' => 'Design Options'
),
);
}
// add to sections
vc_add_params( 'vc_section', _vc_add_background_settings_to_vc_row() );
// add to rows and columns
vc_add_params( 'vc_row', _vc_add_background_settings_to_vc_row() );
vc_add_params( 'vc_column', _vc_add_background_settings_to_vc_row() );
// add to inner rows and inner column
vc_add_params( 'vc_row_inner', _vc_add_background_settings_to_vc_row() );
vc_add_params( 'vc_column_inner', _vc_add_background_settings_to_vc_row() );
/**
* Add Background Settings to VC Row
*
* @param string $group
* @return array
*
* @access private
* @since 4.9.5
*/
function _vc_add_automatic_spacing_settings_to_vc_row( $group = 'Design Options' ) {
return array(
array(
'type' => 'ut_option_separator',
'group' => $group,
'param_name' => 'meta_info',
'info' => esc_html__( 'Automatic Spacing System', 'unitedthemes' ),
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Deactivate Fill Detection', 'unitedthemes' ),
'param_name' => 'automatic_spacing_suppress_fill',
'value' => array(
esc_html__( 'no, thanks!', 'unite' ) => 'off',
esc_html__( 'yes, please!', 'unite' ) => 'on',
),
'group' => 'Design Options'
)
);
}
// add to sections
vc_add_params( 'vc_section', _vc_add_automatic_spacing_settings_to_vc_row() );
vc_add_params( 'vc_row', _vc_add_automatic_spacing_settings_to_vc_row() );
/**
* Overflow Hidden
*
* @return array
*
* @access private
* @since 4.9.7.5
*/
function _vc_add_overflow_options() {
return array(
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Add Overflow Hidden on Desktop?', 'unitedthemes' ),
'description' => esc_html__( 'By default, sections and rows do have an overflow hidden. This can cause elements to be cut off especially when animated. Using this option will turn off the overflow.', 'unitedthemes' ),
'param_name' => 'overflow_hidden',
'edit_field_class' => 'vc_col-sm-4',
'weight' => 1,
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!', 'unitedthemes' ) => 'true'
)
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Add Overflow Hidden on Tablets?', 'unitedthemes' ),
'param_name' => 'overflow_hidden_tablet',
'edit_field_class' => 'vc_col-sm-4',
'weight' => 1,
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!', 'unitedthemes' ) => 'true'
)
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Add Overflow Hidden on Mobiles?', 'unitedthemes' ),
'param_name' => 'overflow_hidden_mobile',
'edit_field_class' => 'vc_col-sm-4',
'weight' => 1,
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!', 'unitedthemes' ) => 'true'
)
)
);
}
vc_add_params( 'vc_row_inner', _vc_add_overflow_options() );
/*
* SVG Separators Config
*
* @return array
*
* @since 4.6
*/
if( !function_exists('ut_svg_separators_config') ) :
function ut_svg_separators_config( $svg ) {
$ut_recognized_svg_separators = apply_filters( 'ut_recognized_svg_separators', array(
'design_wave' => array(
'id' => 'design-wave',
'svg' => 'design-wave.svg',
'path_count' => 2
),
'double_wave_1' => array(
'id' => 'double-wave-1',
'height' => '66',
'svg' => 'double-wave-1.svg',
'path_count' => 1
),
'triple_wave_1' => array(
'id' => 'triple-wave-1',
'height' => '435',
'svg' => 'triple-wave-1.svg',
'path_count' => 3
),
'triple_wave_2' => array(
'id' => 'triple-wave-2',
'height' => '435',
'svg' => 'triple-wave-2.svg',
'path_count' => 3
),
'abstract_waves' => array(
'id' => 'abstract-waves',
'height' => '480',
'svg' => 'abstract.svg',
'path_count' => 2
),
'simple_clouds' => array(
'id' => 'simple-clouds',
'height' => '250',
'svg' => 'simple-clouds.svg',
'path_count' => 1
),
'triangle_shadow' => array(
'id' => 'triangle-shadow',
'height' => '150',
'svg' => 'triangle-shadow.svg',
'path_count' => 2
),
'triangle_asymmetrical' => array(
'id' => 'triangle-asymmetrical',
'height' => '120',
'svg' => 'triangle-asymmetrical.svg',
'path_count' => 1
),
'diagonal' => array(
'id' => 'diagonal',
'height' => '250',
'svg' => 'diagonal.svg',
'path_count' => 1
),
'half_circle' => array(
'id' => 'half-circle',
'height' => '100',
'svg' => 'half-circle.svg',
'path_count' => 1
),
'curve' => array(
'id' => 'curve',
'height' => '100',
'svg' => 'curve.svg',
'path_count' => 1
),
'curve_asymmetrical' => array(
'id' => 'curve-asymmetrical',
'height' => '100',
'svg' => 'curve-asymmetrical.svg',
'path_count' => 1
),
'slit' => array(
'id' => 'slit',
'height' => '200',
'svg' => 'slit.svg',
'path_count' => 2
),
'stamp' => array(
'id' => 'stamp',
'height' => '200',
'svg' => 'stamp.svg',
'path_count' => 1
),
'snow' => array(
'id' => 'snow',
'height' => '600',
'svg' => 'snow.svg',
'path_count' => 3
),
'tech' => array(
'id' => 'tech',
'height' => '140',
'svg' => 'tech.svg',
'path_count' => 1
),
'rectangle' => array(
'id' => 'rectangle',
'height' => '100',
'svg' => 'rectangle.svg',
'path_count' => 1
)
) );
return $ut_recognized_svg_separators[$svg] ?? false;
}
endif;
/*
* Linear Gradient for SVG
*
* @return string
*
* @since 4.6
*/
if( !function_exists('ut_create_svg_linear_gradient') ) :
function ut_create_svg_linear_gradient( $id, $start_color = '#FFF', $end_color = '#FFF', $direction = 'default', $position = 'top', $flip = 'false' ) {
if( empty( $id ) ) {
return '';
}
$directions = array(
// left to right
'default' => array(
'x1' => '100%',
'y1' => '0%',
'x2' => '0%',
'y2' => '0%',
'top' => array(
'start' => $end_color,
'end' => $start_color
),
'bottom' => array(
'start' => $end_color,
'end' => $start_color
)
),
'diagonal_1' => array(
'x1' => '0%',
'y1' => '0%',
'x2' => '100%',
'y2' => '100%',
'top' => array(
'start' => $end_color,
'end' => $start_color
),
'bottom' => array(
'start' => $start_color,
'end' => $end_color
)
),
'diagonal_2' => array(
'x1' => '0%',
'y1' => '100%',
'x2' => '100%',
'y2' => '0%',
'top' => array(
'start' => $start_color,
'end' => $end_color
),
'bottom' => array(
'start' => $start_color,
'end' => $end_color
)
),
'top_down' => array(
'x1' => '0%',
'y1' => '100%',
'x2' => '0%',
'y2' => '0%',
'top' => array(
'start' => $start_color,
'end' => $end_color
),
'bottom' => array(
'start' => $end_color,
'end' => $start_color
)
)
);
if( !isset( $directions[$direction] ) ) {
return;
}
$gradient = '<linearGradient id="' . esc_attr( $id ) . '" x1="' . esc_attr( $directions[$direction]['x1'] ) . '" y1="' . esc_attr( $directions[$direction]['y1'] ) . '" x2="' . esc_attr( $directions[$direction]['x2'] ) . '" y2="' . esc_attr( $directions[$direction]['y2'] ) . '">';
$gradient .= '<stop offset="0%" stop-color="' . esc_attr( $directions[$direction][$position]['start'] ) . '" />';
$gradient .= '<stop offset="100%" stop-color="' . esc_attr( $directions[$direction][$position]['end'] ) . '" />';
$gradient .= '</linearGradient>';
return $gradient;
}
endif;
/*
* Create SVG for Section Separators
*
* @return string
*
* @since 4.6
*/
if( !function_exists('ut_create_section_separator') ) :
function ut_create_section_separator( $area, $position, $svg, $atts = '' ) {
$svg = ut_svg_separators_config( $svg );
if( $svg && !empty( $svg ) && isset( $svg['svg'] ) ) {
$svg_string = ut_file_get_content( THEME_DOCUMENT_ROOT . '/images/svg/separators/' . $svg['svg'] );
} else {
return ''; // svg does not exist
}
if( $area == 'hero' ) {
$atts = array(
// separator horizontal flip
'section_separator_' . $position . '_flip' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_flip', 'false' ),
// color 1
'section_separator_' . $position . '_color_1' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_color_1' ),
'section_separator_' . $position . '_color_1_gradient' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_color_1_gradient', 'false' ),
'section_separator_' . $position . '_color_1_gradient_color' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_color_1_gradient_color' ),
'section_separator_' . $position . '_color_1_gradient_direction' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_color_1_gradient_direction' ,'default' ),
// color 2
'section_separator_' . $position . '_color_2' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_color_2' ),
'section_separator_' . $position . '_color_2_gradient' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_color_2_gradient', 'false' ),
'section_separator_' . $position . '_color_2_gradient_color' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_color_2_gradient_color' ),
'section_separator_' . $position . '_color_2_gradient_direction' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_color_2_gradient_direction' ,'default' ),
// color 3
'section_separator_' . $position . '_color_3' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_color_3' ),
'section_separator_' . $position . '_color_3_gradient' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_color_3_gradient', 'false' ),
'section_separator_' . $position . '_color_3_gradient_color' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_color_3_gradient_color' ),
'section_separator_' . $position . '_color_3_gradient_direction' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_color_3_gradient_direction' ,'default' ),
// dimensions and responsive
'section_separator_' . $position . '_width' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_width', 100 ),
'section_separator_' . $position . '_height' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_height', 0 ),
'section_separator_' . $position . '_height_px' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_height_px', 0 ),
'section_separator_' . $position . '_height_unit' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_height_unit', 'percent' ),
'section_separator_' . $position . '_hide_on_tablet' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_hide_on_tablet', 'true' ),
'section_separator_' . $position . '_width_tablet' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_width_tablet', 100 ),
'section_separator_' . $position . '_height_tablet' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_height_tablet', 0 ),
'section_separator_' . $position . '_height_tablet_px' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_height_tablet_px', 0 ),
'section_separator_' . $position . '_height_tablet_unit' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_height_tablet_unit', 'percent' ),
'section_separator_' . $position . '_hide_on_mobile' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_hide_on_mobile', 'true' ),
'section_separator_' . $position . '_width_mobile' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_width_mobile', 100 ),
'section_separator_' . $position . '_height_mobile' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_height_mobile', 0 ),
'section_separator_' . $position . '_height_mobile_px' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_height_mobile_px', 0 ),
'section_separator_' . $position . '_height_mobile_unit' => ut_return_hero_config( 'ut_hero_separator_' . $position . '_height_mobile_unit', 'percent' ),
);
}
// create unique SVG ID
$svg_id = uniqid("ut-svg-");
// Inject ID
$svg_string = str_replace("{{SVG_ID}}", $svg_id, $svg_string );
// Inject SVG CSS and Linear Gradients
$svg_css_style = '';
$svg_def = '';
for( $x = 1; $x <= $svg['path_count']; $x++ ) {
// reset fill
$svg_fill = '';
$SVG_PATH_CLASS = uniqid("ut-svg-color-");
$svg_string = str_replace('{{SVG_PATH_' . $x . '_CLASS}}', $SVG_PATH_CLASS, $svg_string );
if( isset( $atts['section_separator_' . $position . '_color_' . $x . '_gradient'] ) && $atts['section_separator_' . $position . '_color_' . $x . '_gradient'] == 'true' ) {
$SVG_FILL_ID = uniqid("ut-svg-def-");
$svg_fill = 'fill="url(#' . $SVG_FILL_ID . ')"';
// add to svg config
$svg_def .= ut_create_svg_linear_gradient( $SVG_FILL_ID, $atts['section_separator_' . $position . '_color_' . $x . ''], $atts['section_separator_' . $position . '_color_' . $x . '_gradient_color'], $atts['section_separator_' . $position . '_color_' . $x . '_gradient_direction'] );
} else {
if( !empty( $atts['section_separator_' . $position . '_color_' . $x . ''] ) ) {
$svg_css_style .= '.' . $SVG_PATH_CLASS . '{ fill: ' . $atts['section_separator_' . $position . '_color_' . $x] . ' !important }';
}
}
// apply fill
$svg_string = str_replace('{{SVG_FILL_' . $x . '_ID}}', $svg_fill, $svg_string );
}
// Now Replace Tags in SVG
if( !empty( $svg_css_style ) ) {
$svg_css_style = '<style type="text/css">' . ut_minify_inline_css( $svg_css_style ) . '</style>';
}
if( !empty( $svg_def ) ) {
$svg_def = '<def>' . $svg_def . '</def>';
}
$svg_string = str_replace("{{SVG_STYLE_ID}}", $svg_css_style, $svg_string );
$svg_string = str_replace("{{SVG_DEF_ID}}", $svg_def, $svg_string );
// Separator CSS
$css_style = '';
$el_id = uniqid("ut-separator-");
if( !empty( $atts['section_separator_' . $position . '_width'] ) && $atts['section_separator_' . $position . '_width'] != 0 ) {
$css_style .= '#' . $el_id . '{ width: calc(' . $atts['section_separator_' . $position . '_width'] . '% + 2px); }';
$css_style .= '#' . $el_id . ' svg { width: calc(' . $atts['section_separator_' . $position . '_width'] . '% + 2px); left: ' . ( $atts['section_separator_' . $position . '_width'] / 2 ) . '%; }';
if( isset( $atts['section_separator_' . $position . '_flip'] ) && $atts['section_separator_' . $position . '_flip'] == 'true' ) {
$css_style .= '#' . $el_id . ' svg { -webkit-transform: translateX( -' . ( $atts['section_separator_' . $position . '_width'] / 2 ) . '% ) scale(-1, 1); -ms-transform: translateX( -' . ( $atts['section_separator_' . $position . '_width'] / 2 ) . '% ) scale(-1, 1); transform: translateX( -' . ( $atts['section_separator_' . $position . '_width'] / 2 ) . '% ) scale(-1, 1); }';
} else {
$css_style .= '#' . $el_id . ' svg { -webkit-transform: translateX( -' . ( $atts['section_separator_' . $position . '_width'] / 2 ) . '% ); -ms-transform: translateX( -' . ( $atts['section_separator_' . $position . '_width'] / 2 ) . '% ); transform: translateX( -' . ( $atts['section_separator_' . $position . '_width'] / 2 ) . '% ); }';
}
}
if( isset( $atts['section_separator_' . $position . '_height_unit'] ) && $atts['section_separator_' . $position . '_height_unit'] == 'px' ) {
if( !empty( $atts['section_separator_' . $position . '_height_px'] ) ) {
$css_style .= '#' . $el_id . '{ height: ' . $atts['section_separator_' . $position . '_height_px'] . 'px; }';
$css_style .= '#' . $el_id . ' svg { height: 100%; }';
} elseif( !empty( $svg['height'] ) ) {
$css_style .= '#' . $el_id . '{ height: ' . $svg['height'] . 'px; }';
$css_style .= '#' . $el_id . ' svg { height: ' . $svg['height'] . 'px; }';
}
} else {
if( !empty( $atts['section_separator_' . $position . '_height'] ) ) {
$css_style .= '#' . $el_id . '{ height: ' . $atts['section_separator_' . $position . '_height'] . '%; }';
$css_style .= '#' . $el_id . ' svg { height: 100%; }';
} elseif( !empty( $svg['height'] ) ) {
$css_style .= '#' . $el_id . '{ height: ' . $svg['height'] . 'px; }';
$css_style .= '#' . $el_id . ' svg { height: ' . $svg['height'] . 'px; }';
}
}
// Tablet CSS
if( isset( $atts['section_separator_' . $position . '_height_tablet_unit'] ) && $atts['section_separator_' . $position . '_height_tablet_unit'] == 'px' ) {
if( !empty( $atts['section_separator_' . $position . '_height_tablet_px'] ) ) {
$css_style .= '@media (min-width: 768px) and (max-width: 1024px) {';
$css_style .= '#' . $el_id . '{ height: ' . $atts['section_separator_' . $position . '_height_tablet_px'] . 'px; }';
$css_style .= '#' . $el_id . ' svg { height: 100%; }';
$css_style .= '}';
}
} else {
if( !empty( $atts['section_separator_' . $position . '_height_tablet'] ) ) {
$css_style .= '@media (min-width: 768px) and (max-width: 1024px) {';
$css_style .= '#' . $el_id . '{ height: ' . $atts['section_separator_' . $position . '_height_tablet'] . '%; }';
$css_style .= '#' . $el_id . ' svg { height: 100%; }';
$css_style .= '}';
}
}
if( !empty( $atts['section_separator_' . $position . '_width_tablet'] ) && $atts['section_separator_' . $position . '_width_tablet'] != 0 ) {
$css_style .= '@media (min-width: 768px) and (max-width: 1024px) {';
$css_style .= '#' . $el_id . '{ width: calc(' . $atts['section_separator_' . $position . '_width_tablet'] . '% + 2px); }';
$css_style .= '#' . $el_id . ' svg { width: calc(' . $atts['section_separator_' . $position . '_width_tablet'] . '% + 2px); left: ' . ( $atts['section_separator_' . $position . '_width_tablet'] / 2 ) . '%; }';
if( isset( $atts['section_separator_' . $position . '_flip'] ) && $atts['section_separator_' . $position . '_flip'] == 'true' ) {
$css_style .= '#' . $el_id . ' svg { -webkit-transform: translateX( -' . ( $atts['section_separator_' . $position . '_width_tablet'] / 2 ) . '% ) scale(-1, 1); -ms-transform: translateX( -' . ( $atts['section_separator_' . $position . '_width_tablet'] / 2 ) . '% ) scale(-1, 1); transform: translateX( -' . ( $atts['section_separator_' . $position . '_width_tablet'] / 2 ) . '% ) scale(-1, 1); }';
} else {
$css_style .= '#' . $el_id . ' svg { -webkit-transform: translateX( -' . ( $atts['section_separator_' . $position . '_width_tablet'] / 2 ) . '% ); -ms-transform: translateX( -' . ( $atts['section_separator_' . $position . '_width_tablet'] / 2 ) . '% ); transform: translateX( -' . ( $atts['section_separator_' . $position . '_width_tablet'] / 2 ) . '% ); }';
}
$css_style .= '}';
}
// Mobile CSS
if( isset( $atts['section_separator_' . $position . '_height_mobile_unit'] ) && $atts['section_separator_' . $position . '_height_mobile_unit'] == 'px' ) {
if( !empty( $atts['section_separator_' . $position . '_height_mobile_px'] ) ) {
$css_style .= '@media (max-width: 767px) {';
$css_style .= '#' . $el_id . '{ height: ' . $atts['section_separator_' . $position . '_height_mobile_px'] . 'px; }';
$css_style .= '#' . $el_id . ' svg { height: 100%; }';
$css_style .= '}';
}
} else {
if( !empty( $atts['section_separator_' . $position . '_height_mobile'] ) ) {
$css_style .= '@media (max-width: 767px) {';
$css_style .= '#' . $el_id . '{ height: ' . $atts['section_separator_' . $position . '_height_mobile'] . '%; }';
$css_style .= '#' . $el_id . ' svg { height: 100%; }';
$css_style .= '}';
}
}
if( !empty( $atts['section_separator_' . $position . '_width_mobile'] ) && $atts['section_separator_' . $position . '_width_mobile'] != 0 ) {
$css_style .= '@media (max-width: 767px) {';
$css_style .= '#' . $el_id . '{ width: calc(' . $atts['section_separator_' . $position . '_width_mobile'] . '% + 2px); }';
$css_style .= '#' . $el_id . ' svg { width: calc(' . $atts['section_separator_' . $position . '_width_mobile'] . '% + 2px); left: ' . ( $atts['section_separator_' . $position . '_width_mobile'] / 2 ) . '%; }';
if( isset( $atts['section_separator_' . $position . '_flip'] ) && $atts['section_separator_' . $position . '_flip'] == 'true' ) {
$css_style .= '#' . $el_id . ' svg { -webkit-transform: translateX( -' . ( $atts['section_separator_' . $position . '_width_mobile'] / 2 ) . '% ) scale(-1, 1); -ms-transform: translateX( -' . ( $atts['section_separator_' . $position . '_width_mobile'] / 2 ) . '% ) scale(-1, 1); transform: translateX( -' . ( $atts['section_separator_' . $position . '_width_mobile'] / 2 ) . '% ) scale(-1, 1); }';
} else {
$css_style .= '#' . $el_id . ' svg { -webkit-transform: translateX( -' . ( $atts['section_separator_' . $position . '_width_mobile'] / 2 ) . '% ); -ms-transform: translateX( -' . ( $atts['section_separator_' . $position . '_width_mobile'] / 2 ) . '% ); transform: translateX( -' . ( $atts['section_separator_' . $position . '_width_mobile'] / 2 ) . '% ); }';
}
$css_style .= '}';
}
if( !empty( $atts['section_separator_' . $position . '_zindex'] ) && $atts['section_separator_' . $position . '_zindex'] == 'true' ) {
$css_style .= '#' . $el_id . '{ z-index: 10; }';
}
if( !empty( $atts['section_separator_' . $position . '_zindex'] ) && $atts['section_separator_' . $position . '_zindex'] == 'custom' && !empty( $atts['section_separator_' . $position . '_zindex_custom'] ) ) {
$css_style .= '#' . $el_id . '{ z-index: ' . $atts['section_separator_' . $position . '_zindex_custom'] . '; }';
}
// Start Separator
$separator = '';
$classes = array('bklyn-section-separator');
$classes[] = 'bklyn-section-separator-' . $position;
$classes[] = 'bklyn-section-separator-' . $svg['id'];
// Flip SVG
if( isset( $atts['section_separator_' . $position . '_flip'] ) && $atts['section_separator_' . $position . '_flip'] == 'true' ) {
$classes[] = 'bklyn-section-separator-flip';
}
// Hide on Tablet
if( isset( $atts['section_separator_' . $position . '_hide_on_tablet'] ) && $atts['section_separator_' . $position . '_hide_on_tablet'] == 'true' ) {
$classes[] = 'hide-on-tablet';
}
// Hide on Mobile
if( isset( $atts['section_separator_' . $position . '_hide_on_mobile'] ) && $atts['section_separator_' . $position . '_hide_on_mobile'] == 'true' ) {
$classes[] = 'hide-on-mobile';
}
// Add Custom CSS
$separator .= '<div id="' . esc_attr( $el_id ) . '" class="' . implode(" ", $classes ) . '">';
if( !empty( $css_style ) ) {
$separator .= '<style type="text/css">' . ut_minify_inline_css( $css_style ) . '</style>';
}
$separator .= $svg_string;
$separator .= '</div>';
return $separator;
}
endif;
/**
* Add Section Separator Settings to VC Section
*
* @return array
*
* @access private
* @since 4.6
*/
function _vc_add_section_seperator_settings_to_vc_section() {
return array(
// Top Separator
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Add Section Separator at Top?', 'unitedthemes' ),
'param_name' => 'section_separator_top',
'group' => 'Separator',
'value' => array(
esc_html__( 'no', 'unitedthemes' ) => '',
esc_html__( 'yes' , 'unitedthemes' ) => 'true'
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Force Top Separator to be in front.', 'unitedthemes' ),
'description' => __( 'By default section separators are located behind the content. Use this option to add bring it to the front.', 'unitedthemes' ),
'param_name' => 'section_separator_top_zindex',
'group' => 'Separator',
'value' => array(
esc_html__( 'no', 'unitedthemes' ) => '',
esc_html__( 'yes' , 'unitedthemes' ) => 'true',
esc_html__( 'custom (z-index)' , 'unitedthemes' ) => 'custom'
),
'dependency' => array(
'element' => 'section_separator_top',
'value' => array('true')
)
),
array(
'type' => 'textfield',
'heading' => __( 'Top Separator Custom Z-Index', 'unitedthemes' ),
'param_name' => 'section_separator_top_zindex_custom',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_top_zindex',
'value' => array('custom')
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Separator Top Style', 'unitedthemes' ),
'param_name' => 'section_separator_svg_top',
'group' => 'Separator',
'value' => array(
esc_html__( 'Design Waves', 'unitedthemes' ) => 'design_wave',
esc_html__( 'Double Wave (1)', 'unitedthemes' ) => 'double_wave_1',
esc_html__( 'Triple Wave (1)', 'unitedthemes' ) => 'triple_wave_1',
esc_html__( 'Triple Wave (2)', 'unitedthemes' ) => 'triple_wave_2',
esc_html__( 'Abstract Waves', 'unitedthemes' ) => 'abstract_waves',
esc_html__( 'Simple Clouds', 'unitedthemes' ) => 'simple_clouds',
esc_html__( 'Triangle with Shadow', 'unitedthemes' ) => 'triangle_shadow',
esc_html__( 'Triangle Asymmetrical', 'unitedthemes') => 'triangle_asymmetrical',
esc_html__( 'Diagonal', 'unitedthemes' ) => 'diagonal',
esc_html__( 'Half Circle', 'unitedthemes' ) => 'half_circle',
esc_html__( 'Curve', 'unitedthemes' ) => 'curve',
esc_html__( 'Curve Asymmetrical', 'unitedthemes' ) => 'curve_asymmetrical',
esc_html__( 'Slit', 'unitedthemes' ) => 'slit',
esc_html__( 'Snow', 'unitedthemes' ) => 'snow',
//esc_html__( 'Tech', 'unitedthemes' ) => 'tech',
esc_html__( 'Rectangle', 'unitedthemes' ) => 'rectangle',
),
'dependency' => array(
'element' => 'section_separator_top',
'value' => array('true')
)
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Flip Top Separator?', 'unitedthemes' ),
'param_name' => 'section_separator_top_flip',
'group' => 'Separator',
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!' , 'unitedthemes' ) => 'true'
),
'dependency' => array(
'element' => 'section_separator_top',
'value' => array('true')
)
),
// Top Separator Color Part 1
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'SVG Color Part 1', 'unitedthemes' ),
'param_name' => 'section_separator_top_color_1',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_top',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Add Gradient for SVG Color Part 1', 'unitedthemes' ),
'param_name' => 'section_separator_top_color_1_gradient',
'group' => 'Separator',
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!' , 'unitedthemes' ) => 'true'
),
'dependency' => array(
'element' => 'section_separator_top',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'SVG Color Part 1 Gradient Color', 'unitedthemes' ),
'param_name' => 'section_separator_top_color_1_gradient_color',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_top_color_1_gradient',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Gradient Direction', 'unitedthemes' ),
'param_name' => 'section_separator_top_color_1_gradient_direction',
'group' => 'Separator',
'value' => array(
esc_html__( 'Default (left to right)', 'unitedthemes' ) => 'default',
esc_html__( 'Diagonal (top left to bottom right)', 'unitedthemes' ) => 'diagonal_1',
esc_html__( 'Diagonal (top right to bottom left)', 'unitedthemes' ) => 'diagonal_2',
esc_html__( 'Top to Down', 'unitedthemes' ) => 'top_down',
),
'dependency' => array(
'element' => 'section_separator_top_color_1_gradient',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
// Top Separator Color Part 2
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'SVG Color Part 2', 'unitedthemes' ),
'param_name' => 'section_separator_top_color_2',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_svg_top',
'value' => array('design_wave','triangle_shadow','snow', 'slit','abstract_waves','triple_wave_1','triple_wave_2')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Add Gradient for SVG Color Part 2', 'unitedthemes' ),
'param_name' => 'section_separator_top_color_2_gradient',
'group' => 'Separator',
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!' , 'unitedthemes' ) => 'true'
),
'dependency' => array(
'element' => 'section_separator_svg_top',
'value' => array('design_wave','triangle_shadow','snow', 'slit','abstract_waves','triple_wave_1','triple_wave_2')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'SVG Color Part 2 Gradient Color', 'unitedthemes' ),
'param_name' => 'section_separator_top_color_2_gradient_color',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_top_color_2_gradient',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Gradient Direction', 'unitedthemes' ),
'param_name' => 'section_separator_top_color_2_gradient_direction',
'group' => 'Separator',
'value' => array(
esc_html__( 'Default (left to right)', 'unitedthemes' ) => 'default',
esc_html__( 'Diagonal (top left to bottom right)', 'unitedthemes' ) => 'diagonal_1',
esc_html__( 'Diagonal (top right to bottom left)', 'unitedthemes' ) => 'diagonal_2',
esc_html__( 'Top to Down', 'unitedthemes' ) => 'top_down',
),
'dependency' => array(
'element' => 'section_separator_top_color_2_gradient',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
// Top Separator Color Part 3
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'SVG Color Part 3', 'unitedthemes' ),
'param_name' => 'section_separator_top_color_3',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_svg_top',
'value' => array('snow','triple_wave_1','triple_wave_2')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Add Gradient for SVG Color Part 3', 'unitedthemes' ),
'param_name' => 'section_separator_top_color_3_gradient',
'group' => 'Separator',
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!' , 'unitedthemes' ) => 'true'
),
'dependency' => array(
'element' => 'section_separator_svg_top',
'value' => array('snow','triple_wave_1','triple_wave_2')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'SVG Color Part 3 Gradient Color', 'unitedthemes' ),
'param_name' => 'section_separator_top_color_3_gradient_color',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_top_color_3_gradient',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Gradient Direction', 'unitedthemes' ),
'param_name' => 'section_separator_top_color_3_gradient_direction',
'group' => 'Separator',
'value' => array(
esc_html__( 'Default (left to right)', 'unitedthemes' ) => 'default',
esc_html__( 'Diagonal (top left to bottom right)', 'unitedthemes' ) => 'diagonal_1',
esc_html__( 'Diagonal (top right to bottom left)', 'unitedthemes' ) => 'diagonal_2',
esc_html__( 'Top to Down', 'unitedthemes' ) => 'top_down',
),
'dependency' => array(
'element' => 'section_separator_top_color_3_gradient',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
// Top Separator Dimensions
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Top Separator Width', 'unitedthemes' ),
'description' => esc_html__( 'default: 100%', 'unitedthemes' ),
'param_name' => 'section_separator_top_width',
'value' => array(
'default' => '100',
'min' => '100',
'max' => '300',
'step' => '1',
'unit' => '%'
),
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_top',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Top Separator Height', 'unitedthemes' ),
'description' => esc_html__( '0 = default height of separator.', 'unitedthemes' ),
'param_name' => 'section_separator_top_height',
'value' => array(
'default' => '0',
'min' => '0',
'max' => '300',
'step' => '1',
'unit' => ''
),
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_top_height_unit',
'value' => array('percent')
),
'edit_field_class' => 'vc_col-sm-5',
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Top Separator Height', 'unitedthemes' ),
'description' => esc_html__( '0 = default height of separator.', 'unitedthemes' ),
'param_name' => 'section_separator_top_height_px',
'value' => array(
'default' => '0',
'min' => '0',
'max' => '3000',
'step' => '1',
'unit' => ''
),
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_top_height_unit',
'value' => array('px')
),
'edit_field_class' => 'vc_col-sm-5',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Unit', 'unitedthemes' ),
'param_name' => 'section_separator_top_height_unit',
'value' => array(
esc_html__( '%', 'unitedthemes' ) => 'percent',
esc_html__( 'px', 'unitedthemes' ) => 'px'
),
'std' => 'percent',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_top',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-1',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Hide Top Separator on Tablet?', 'unitedthemes' ),
'param_name' => 'section_separator_top_hide_on_tablet',
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!', 'unitedthemes' ) => 'true'
),
'std' => 'true',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_top',
'value' => array('true')
),
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Top Separator Width on Tablets', 'unitedthemes' ),
'description' => esc_html__( 'default: 100%', 'unitedthemes' ),
'param_name' => 'section_separator_top_width_tablet',
'value' => array(
'default' => '100',
'min' => '100',
'max' => '300',
'step' => '1',
'unit' => '%'
),
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_top_hide_on_tablet',
'value_not_equal_to' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Top Separator Height on Tablets', 'unitedthemes' ),
'description' => esc_html__( '0 = default height of Separator', 'unitedthemes' ),
'param_name' => 'section_separator_top_height_tablet',
'value' => array(
'default' => '0',
'min' => '0',
'max' => '100',
'step' => '1',
'unit' => ''
),
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_top_height_tablet_unit',
'value' => array('percent')
),
'edit_field_class' => 'vc_col-sm-5',
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Top Separator Height on Tablets', 'unitedthemes' ),
'description' => esc_html__( '0 = default height of Separator', 'unitedthemes' ),
'param_name' => 'section_separator_top_height_tablet_px',
'value' => array(
'default' => '0',
'min' => '0',
'max' => '1280',
'step' => '1',
'unit' => ''
),
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_top_height_tablet_unit',
'value' => array('px')
),
'edit_field_class' => 'vc_col-sm-5',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Unit', 'unitedthemes' ),
'param_name' => 'section_separator_top_height_tablet_unit',
'value' => array(
esc_html__( '%', 'unitedthemes' ) => 'percent',
esc_html__( 'px', 'unitedthemes' ) => 'px'
),
'std' => 'percent',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_top_hide_on_tablet',
'value_not_equal_to' => array('true')
),
'edit_field_class' => 'vc_col-sm-1',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Hide Top Separator on Mobile?', 'unitedthemes' ),
'param_name' => 'section_separator_top_hide_on_mobile',
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!', 'unitedthemes' ) => 'true'
),
'std' => 'true',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_top',
'value' => array('true')
),
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Top Separator Width on Mobiles', 'unitedthemes' ),
'description' => esc_html__( 'default: 100%', 'unitedthemes' ),
'param_name' => 'section_separator_top_width_mobile',
'value' => array(
'default' => '100',
'min' => '100',
'max' => '300',
'step' => '1',
'unit' => '%'
),
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_top_hide_on_mobile',
'value_not_equal_to' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Top Separator Height on Mobiles', 'unitedthemes' ),
'description' => esc_html__( '0 = default height of Separator', 'unitedthemes' ),
'param_name' => 'section_separator_top_height_mobile',
'value' => array(
'default' => '0',
'min' => '0',
'max' => '100',
'step' => '1',
'unit' => ''
),
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_top_height_mobile_unit',
'value' => array('percent')
),
'edit_field_class' => 'vc_col-sm-5',
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Top Separator Height on Mobiles', 'unitedthemes' ),
'description' => esc_html__( '0 = default height of Separator', 'unitedthemes' ),
'param_name' => 'section_separator_top_height_mobile_px',
'value' => array(
'default' => '0',
'min' => '0',
'max' => '1280',
'step' => '1',
'unit' => ''
),
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_top_height_mobile_unit',
'value' => array('px')
),
'edit_field_class' => 'vc_col-sm-5',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Unit', 'unitedthemes' ),
'param_name' => 'section_separator_top_height_mobile_unit',
'value' => array(
esc_html__( '%', 'unitedthemes' ) => 'percent',
esc_html__( 'px', 'unitedthemes' ) => 'px'
),
'std' => 'percent',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_top_hide_on_mobile',
'value_not_equal_to' => array('true')
),
'edit_field_class' => 'vc_col-sm-1',
),
// Bottom Separator
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Add Section Separator at Bottom?', 'unitedthemes' ),
'param_name' => 'section_separator_bottom',
'group' => 'Separator',
'value' => array(
esc_html__( 'no', 'unitedthemes' ) => '',
esc_html__( 'yes' , 'unitedthemes' ) => 'true'
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Force Bottom Separator to be in front.', 'unitedthemes' ),
'description' => __( 'By default section separators are located behind the content. Use this option to add bring it to the front.', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_zindex',
'group' => 'Separator',
'value' => array(
esc_html__( 'no', 'unitedthemes' ) => '',
esc_html__( 'yes' , 'unitedthemes' ) => 'true',
esc_html__( 'custom (z-index)' , 'unitedthemes' ) => 'custom'
),
'dependency' => array(
'element' => 'section_separator_bottom',
'value' => array('true')
)
),
array(
'type' => 'textfield',
'heading' => __( 'Bottom Separator Custom Z-Index', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_zindex_custom',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_bottom_zindex',
'value' => array('custom')
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Bottom Separator Style', 'unitedthemes' ),
'param_name' => 'section_separator_svg_bottom',
'group' => 'Separator',
'value' => array(
esc_html__( 'Design Waves', 'unitedthemes' ) => 'design_wave',
esc_html__( 'Double Wave (1)', 'unitedthemes' ) => 'double_wave_1',
esc_html__( 'Triple Wave (1)', 'unitedthemes' ) => 'triple_wave_1',
esc_html__( 'Triple Wave (2)', 'unitedthemes' ) => 'triple_wave_2',
esc_html__( 'Abstract Waves', 'unitedthemes' ) => 'abstract_waves',
esc_html__( 'Simple Clouds', 'unitedthemes' ) => 'simple_clouds',
esc_html__( 'Triangle with Shadow', 'unitedthemes' ) => 'triangle_shadow',
esc_html__( 'Triangle Asymmetrical', 'unitedthemes') => 'triangle_asymmetrical',
esc_html__( 'Diagonal', 'unitedthemes' ) => 'diagonal',
esc_html__( 'Half Circle', 'unitedthemes' ) => 'half_circle',
esc_html__( 'Curve', 'unitedthemes' ) => 'curve',
esc_html__( 'Curve Asymmetrical', 'unitedthemes' ) => 'curve_asymmetrical',
esc_html__( 'Slit', 'unitedthemes' ) => 'slit',
esc_html__( 'Snow', 'unitedthemes' ) => 'snow',
//esc_html__( 'Tech', 'unitedthemes' ) => 'tech',
esc_html__( 'Rectangle', 'unitedthemes' ) => 'rectangle',
),
'dependency' => array(
'element' => 'section_separator_bottom',
'value' => array('true')
)
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Flip Bottom Separator?', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_flip',
'group' => 'Separator',
'value' => array(
esc_html__( 'no', 'unitedthemes' ) => '',
esc_html__( 'yes' , 'unitedthemes' ) => 'true'
),
'dependency' => array(
'element' => 'section_separator_bottom',
'value' => array('true')
)
),
// Bottom Separator Color Part 1
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'SVG Color Part 1', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_color_1',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_bottom',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Add Gradient for SVG Color Part 1', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_color_1_gradient',
'group' => 'Separator',
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!' , 'unitedthemes' ) => 'true'
),
'dependency' => array(
'element' => 'section_separator_bottom',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'SVG Color Part 1 Gradient Color', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_color_1_gradient_color',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_bottom_color_1_gradient',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Gradient Direction', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_color_1_gradient_direction',
'group' => 'Separator',
'value' => array(
esc_html__( 'Default (left to right)', 'unitedthemes' ) => 'default',
esc_html__( 'Diagonal (top left to bottom right)', 'unitedthemes' ) => 'diagonal_1',
esc_html__( 'Diagonal (top right to bottom left)', 'unitedthemes' ) => 'diagonal_2',
esc_html__( 'Top to Down', 'unitedthemes' ) => 'top_down',
),
'dependency' => array(
'element' => 'section_separator_bottom_color_1_gradient',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
// Bottom Separator Color Part 2
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'SVG Color Part 2', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_color_2',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_svg_bottom',
'value' => array('design_wave','triangle_shadow','snow', 'slit','abstract_waves','triple_wave_1','triple_wave_2')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Add Gradient for SVG Color Part 2', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_color_2_gradient',
'group' => 'Separator',
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!' , 'unitedthemes' ) => 'true'
),
'dependency' => array(
'element' => 'section_separator_svg_bottom',
'value' => array('design_wave','triangle_shadow','snow', 'slit','abstract_waves','triple_wave_1','triple_wave_2')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'SVG Color Part 2 Gradient Color', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_color_2_gradient_color',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_bottom_color_2_gradient',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Gradient Direction', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_color_2_gradient_direction',
'group' => 'Separator',
'value' => array(
esc_html__( 'Default (left to right)', 'unitedthemes' ) => 'default',
esc_html__( 'Diagonal (top left to bottom right)', 'unitedthemes' ) => 'diagonal_1',
esc_html__( 'Diagonal (top right to bottom left)', 'unitedthemes' ) => 'diagonal_2',
esc_html__( 'Top to Down', 'unitedthemes' ) => 'top_down',
),
'dependency' => array(
'element' => 'section_separator_bottom_color_2_gradient',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
// Bottom Separator Color Part 3
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'SVG Color Part 3', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_color_3',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_svg_bottom',
'value' => array('snow','triple_wave_1','triple_wave_2')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Add Gradient for SVG Color Part 3', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_color_3_gradient',
'group' => 'Separator',
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!' , 'unitedthemes' ) => 'true'
),
'dependency' => array(
'element' => 'section_separator_svg_bottom',
'value' => array('snow','triple_wave_1','triple_wave_2')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'SVG Color Part 2 Gradient Color', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_color_3_gradient_color',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_bottom_color_3_gradient',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Gradient Direction', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_color_3_gradient_direction',
'group' => 'Separator',
'value' => array(
esc_html__( 'Default (left to right)', 'unitedthemes' ) => 'default',
esc_html__( 'Diagonal (top left to bottom right)', 'unitedthemes' ) => 'diagonal_1',
esc_html__( 'Diagonal (top right to bottom left)', 'unitedthemes' ) => 'diagonal_2',
esc_html__( 'Top to Down', 'unitedthemes' ) => 'top_down',
),
'dependency' => array(
'element' => 'section_separator_bottom_color_3_gradient',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
// Bottom Separator Dimensions
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Bottom Separator Width', 'unitedthemes' ),
'description' => esc_html__( 'default: 100%', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_width',
'value' => array(
'default' => '100',
'min' => '100',
'max' => '300',
'step' => '1',
'unit' => '%'
),
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_bottom',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Bottom Separator Height', 'unitedthemes' ),
'description' => esc_html__( '0 = default height of Separator', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_height',
'value' => array(
'default' => '0',
'min' => '0',
'max' => '300',
'step' => '1',
'unit' => ''
),
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_bottom_height_unit',
'value' => array('percent')
),
'edit_field_class' => 'vc_col-sm-5',
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Bottom Separator Height', 'unitedthemes' ),
'description' => esc_html__( '0 = default height of Separator', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_height_px',
'value' => array(
'default' => '0',
'min' => '0',
'max' => '3000',
'step' => '1',
'unit' => ''
),
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_bottom_height_unit',
'value' => array('px')
),
'edit_field_class' => 'vc_col-sm-5',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Unit', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_height_unit',
'value' => array(
esc_html__( '%', 'unitedthemes' ) => 'percent',
esc_html__( 'px', 'unitedthemes' ) => 'px'
),
'std' => 'percent',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_bottom',
'value' => array('true')
),
'edit_field_class' => 'vc_col-sm-1',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Hide Bottom Separator on Tablet?', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_hide_on_tablet',
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!', 'unitedthemes' ) => 'true'
),
'std' => 'true',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_bottom',
'value' => array('true')
),
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Bottom Separator Width on Tablets', 'unitedthemes' ),
'description' => esc_html__( 'default: 100%', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_width_tablet',
'value' => array(
'default' => '100',
'min' => '100',
'max' => '300',
'step' => '1',
'unit' => '%'
),
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_bottom_hide_on_tablet',
'value_not_equal_to' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Bottom Separator Height on Tablets', 'unitedthemes' ),
'description' => esc_html__( '0 = default height of Separator', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_height_tablet',
'value' => array(
'default' => '0',
'min' => '0',
'max' => '100',
'step' => '1',
'unit' => ''
),
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_bottom_height_tablet_unit',
'value' => array('percent')
),
'edit_field_class' => 'vc_col-sm-5',
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Bottom Separator Height on Tablets', 'unitedthemes' ),
'description' => esc_html__( '0 = default height of Separator', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_height_tablet_px',
'value' => array(
'default' => '0',
'min' => '0',
'max' => '1280',
'step' => '1',
'unit' => ''
),
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_bottom_height_tablet_unit',
'value' => array('px')
),
'edit_field_class' => 'vc_col-sm-5',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Unit', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_height_tablet_unit',
'value' => array(
esc_html__( '%', 'unitedthemes' ) => 'percent',
esc_html__( 'px', 'unitedthemes' ) => 'px'
),
'std' => 'percent',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_bottom_hide_on_tablet',
'value_not_equal_to' => array('true')
),
'edit_field_class' => 'vc_col-sm-1',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Hide Bottom Separator on Mobile?', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_hide_on_mobile',
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => '',
esc_html__( 'yes, please!', 'unitedthemes' ) => 'true'
),
'std' => 'true',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_bottom',
'value' => array('true')
),
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Bottom Separator Width on Mobiles', 'unitedthemes' ),
'description' => esc_html__( 'default: 100%', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_width_mobile',
'value' => array(
'default' => '100',
'min' => '100',
'max' => '300',
'step' => '1',
'unit' => '%'
),
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_bottom_hide_on_mobile',
'value_not_equal_to' => array('true')
),
'edit_field_class' => 'vc_col-sm-6',
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Bottom Separator Height on Mobiles', 'unitedthemes' ),
'description' => esc_html__( '0 = default height of Separator', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_height_mobile',
'value' => array(
'default' => '0',
'min' => '0',
'max' => '100',
'step' => '1',
'unit' => ''
),
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_bottom_height_mobile_unit',
'value' => array('percent')
),
'edit_field_class' => 'vc_col-sm-5',
),
array(
'type' => 'range_slider',
'heading' => esc_html__( 'Bottom Separator Height on Mobiles', 'unitedthemes' ),
'description' => esc_html__( '0 = default height of Separator', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_height_mobile_px',
'value' => array(
'default' => '0',
'min' => '0',
'max' => '1280',
'step' => '1',
'unit' => ''
),
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_bottom_height_mobile_unit',
'value' => array('px')
),
'edit_field_class' => 'vc_col-sm-5',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Unit', 'unitedthemes' ),
'param_name' => 'section_separator_bottom_height_mobile_unit',
'value' => array(
esc_html__( '%', 'unitedthemes' ) => 'percent',
esc_html__( 'px', 'unitedthemes' ) => 'px'
),
'std' => 'percent',
'group' => 'Separator',
'dependency' => array(
'element' => 'section_separator_bottom_hide_on_mobile',
'value_not_equal_to' => array('true')
),
'edit_field_class' => 'vc_col-sm-1',
),
);
}
// add to sections
vc_add_params( 'vc_row', _vc_add_section_seperator_settings_to_vc_section() );
vc_add_params( 'vc_section', _vc_add_section_seperator_settings_to_vc_section() );
/**
* Add Responsive Settings
*
* @return array
*
* @access private
* @since 4.4
*/
function _vc_add_responsive_settings_classes() {
return array(
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Hide on Desktop?', 'unitedthemes' ),
'param_name' => 'hide_on_desktop',
'value' => array(
esc_html__( 'off', 'unitedthemes' ) => '',
esc_html__( 'on', 'unitedthemes' ) => 'true'
),
'group' => 'Responsive Options'
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Hide on Tablet?', 'unitedthemes' ),
'param_name' => 'hide_on_tablet',
'value' => array(
esc_html__( 'off', 'unitedthemes' ) => '',
esc_html__( 'on', 'unitedthemes' ) => 'true'
),
'group' => 'Responsive Options'
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Hide on Mobile?', 'unitedthemes' ),
'param_name' => 'hide_on_mobile',
'value' => array(
esc_html__( 'off', 'unitedthemes' ) => '',
esc_html__( 'on', 'unitedthemes' ) => 'true'
),
'group' => 'Responsive Options'
),
);
}
vc_add_params( 'vc_row', _vc_add_responsive_settings_classes() );
vc_add_params( 'vc_column', _vc_add_responsive_settings_classes() );
vc_add_params( 'vc_section', _vc_add_responsive_settings_classes() );
vc_add_params( 'vc_row_inner', _vc_add_responsive_settings_classes() );
/**
* Enhance VC Media Grid
*
* @return array
*
* @access private
* @since 4.0.3
*/
function _vc_add_enhance_media_grid_gap() {
return array(
'type' => 'dropdown',
'heading' => __( 'Gap', 'unitedthemes' ),
'param_name' => 'gap',
'value' => array(
'0px' => '0',
'1px' => '1',
'2px' => '2',
'3px' => '3',
'4px' => '4',
'5px' => '5',
'10px' => '10',
'15px' => '15',
'20px' => '20',
'25px' => '25',
'30px' => '30',
'35px' => '35',
'40px' => '40',
),
'std' => '40',
'description' => __( 'Select gap between grid elements.', 'unitedthemes' ),
'edit_field_class' => 'vc_col-sm-6'
);
}
vc_add_param( 'vc_media_grid', _vc_add_enhance_media_grid_gap() );
/* remove grid items */
vc_remove_param( 'vc_media_grid', 'item' );
function _vc_add_enhance_row_grid_gap() {
return array(
'type' => 'dropdown',
'heading' => __( 'Gap', 'unitedthemes' ),
'param_name' => 'gap',
'value' => array(
'Brooklyn Default Gap' => '0',
'1px' => '1',
'2px' => '2',
'3px' => '3',
'4px' => '4',
'5px' => '5',
'10px' => '10',
'15px' => '15',
'20px' => '20',
'25px' => '25',
'30px' => '30',
'35px' => '35',
'40px' => '40',
),
'std' => '0',
'description' => __( 'Select gap between grid elements.', 'unitedthemes' ),
);
}
vc_add_param( 'vc_row', _vc_add_enhance_row_grid_gap() );
vc_add_param( 'vc_row_inner', _vc_add_enhance_row_grid_gap() );
/**
* Enhance VC Empty Space
*
* @return array
*
* @access private
* @since 4.0.3
*/
function _vc_add_enhance_empty_space_height() {
return array(
array(
'type' => 'textfield',
'heading' => __( 'Height', 'unitedthemes' ),
'param_name' => 'height',
'value' => '40px',
'edit_field_class' => 'vc_col-sm-4',
'admin_label' => true,
'description' => __( 'Enter empty space height (Note: CSS measurement units allowed).', 'unitedthemes' ),
'dependency' => array(
'element' => 'hide_on_desktop',
'value_not_equal_to' => array('true')
),
),
array(
'type' => 'textfield',
'heading' => __( 'Height on Tablet', 'unitedthemes' ),
'param_name' => 'tablet_height',
'edit_field_class' => 'vc_col-sm-4',
'description' => __( 'Enter empty space height for tablets. Leave empty to inherit from larger. (Note: CSS measurement units allowed).', 'unitedthemes' ),
'dependency' => array(
'element' => 'hide_on_tablet',
'value_not_equal_to' => array('true')
),
),
array(
'type' => 'textfield',
'heading' => __( 'Height on Mobile', 'unitedthemes' ),
'param_name' => 'mobile_height',
'edit_field_class' => 'vc_col-sm-4',
'description' => __( 'Enter empty space height for mobiles. Leave empty to inherit from larger. (Note: CSS measurement units allowed).', 'unitedthemes' ),
'dependency' => array(
'element' => 'hide_on_mobile',
'value_not_equal_to' => array('true')
),
),
array(
'type' => 'el_id',
'heading' => __( 'Element ID', 'unitedthemes' ),
'param_name' => 'el_id',
'description' => sprintf( __( 'Enter element ID (Note: make sure it is unique and valid according to <a href="%s" target="_blank">w3c specification</a>).', 'unitedthemes' ), 'http://www.w3schools.com/tags/att_global_id.asp' ),
),
array(
'type' => 'textfield',
'heading' => __( 'Extra class name', 'unitedthemes' ),
'param_name' => 'el_class',
'description' => __( 'Style particular content element differently - add a class name and refer to it in custom CSS.', 'unitedthemes' ),
),
array(
'type' => 'css_editor',
'heading' => __( 'CSS box', 'unitedthemes' ),
'param_name' => 'css',
'group' => __( 'Design Options', 'unitedthemes' ),
),
);
}
vc_remove_param( 'vc_empty_space', 'height' );
vc_remove_param( 'vc_empty_space', 'css' );
vc_remove_param( 'vc_empty_space', 'el_id' );
vc_remove_param( 'vc_empty_space', 'el_class' );
vc_add_params( 'vc_empty_space', _vc_add_enhance_empty_space_height() );
/**
* Enhance VC Media Gallery
*
* @return array
*
* @access private
* @since 4.0.3
*/
function _vc_add_color_settings_to_vc_media_gallery() {
return array(
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'Arrow Color', 'unitedthemes' ),
'param_name' => 'arrow_color',
'group' => 'Colors'
),
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'Arrow Hover Color', 'unitedthemes' ),
'param_name' => 'arrow_color_hover',
'group' => 'Colors'
),
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'Dot Color', 'unitedthemes' ),
'param_name' => 'dot_color',
'group' => 'Colors'
),
array(
'type' => 'colorpicker',
'heading' => esc_html__( 'Dot Color Active', 'unitedthemes' ),
'param_name' => 'dot_color_active',
'group' => 'Colors'
)
);
}
vc_add_params( 'vc_gallery', _vc_add_color_settings_to_vc_media_gallery() );
/**
* Add Animation Settings to VC Column
*
* @return array
*
* @access private
* @since 4.2.0
*/
// remove default animation param
vc_remove_param( "vc_column", "css_animation" );
function _vc_add_animation_settings_to_vc_column() {
return array (
array(
'type' => 'animation_style',
'heading' => __( 'Animation Effect', 'unitedthemes' ),
'description' => __( 'Select animation effect.', 'unitedthemes' ),
'group' => 'Animation',
'param_name' => 'effect',
'settings' => array(
'type' => array(
'in',
'out',
'other',
),
)
),
array(
'type' => 'textfield',
'heading' => esc_html__( 'Animation Duration', 'unitedthemes' ),
'description' => esc_html__( 'Animation time in seconds e.g. 1s', 'unitedthemes' ),
'param_name' => 'animation_duration',
'group' => 'Animation',
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Animate Once?', 'unitedthemes' ),
'description' => esc_html__( 'Animate only once when reaching the viewport, animate everytime when reaching the viewport or make the animation infinite? By default the animation executes everytime when the element becomes visible in viewport, means when leaving the viewport the animation will be reseted and starts again when reaching the viewport again. By setting this option to yes, the animation executes exactly once. By setting it to infinite, the animation loops all the time, no matter if the element is in viewport or not.', 'unitedthemes' ),
'param_name' => 'animate_once',
'group' => 'Animation',
'value' => array(
esc_html__( 'yes', 'unitedthemes' ) => 'yes',
esc_html__( 'no' , 'unitedthemes' ) => 'no',
esc_html__( 'infinite', 'unitedthemes' ) => 'infinite',
)
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Animate on Tablet?', 'unitedthemes' ),
'param_name' => 'animate_tablet',
'group' => 'Animation',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
esc_html__( 'no', 'unitedthemes' ) => 'false',
esc_html__( 'yes' , 'unitedthemes' ) => 'true'
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Animate on Mobile?', 'unitedthemes' ),
'param_name' => 'animate_mobile',
'group' => 'Animation',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
esc_html__( 'no', 'unitedthemes' ) => 'false',
esc_html__( 'yes' , 'unitedthemes' ) => 'true'
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Delay Animation?', 'unitedthemes' ),
'param_name' => 'delay',
'group' => 'Animation',
'edit_field_class' => 'vc_col-sm-6',
'value' => array(
esc_html__( 'no', 'unitedthemes' ) => 'false',
esc_html__( 'yes' , 'unitedthemes' ) => 'true'
)
),
array(
'type' => 'textfield',
'heading' => esc_html__( 'Delay Timer', 'unitedthemes' ),
'description' => esc_html__( 'Time in milliseconds until the animation starts. e.g. 200', 'unitedthemes' ),
'param_name' => 'delay_timer',
'group' => 'Animation',
'edit_field_class' => 'vc_col-sm-6',
'dependency' => array(
'element' => 'delay',
'value' => 'true',
)
),
);
}
vc_add_params( 'vc_row', _vc_add_animation_settings_to_vc_column() );
vc_add_params( 'vc_column', _vc_add_animation_settings_to_vc_column() );
vc_add_params( 'vc_row_inner', _vc_add_animation_settings_to_vc_column() );
vc_add_params( 'vc_column_inner', _vc_add_animation_settings_to_vc_column() );
vc_remove_param( 'vc_row', 'css_animation' );
vc_remove_param( 'vc_section', 'css_animation' );
/**
* Stick to Parent
*
* @return array
*
* @access private
* @since 5.0
*/
function _vc_add_stick_to_parent() {
return array (
array(
'type' => 'dropdown',
'heading' => __( 'Make Sticky on Scroll?', 'unitedthemes' ),
'description' => __( 'Deactivated on Mobiles and Tablets. Also not combinable with parallax scroll effect.', 'unitedthemes' ),
'group' => 'Sticky',
'param_name' => 'sticky_on_scroll',
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => 'off',
esc_html__( 'yes, please!', 'unitedthemes' ) => 'on',
),
'dependency' => array(
'element' => 'element_parallax',
'value_not_equal_to' => array('on')
)
)
);
}
vc_add_params( 'vc_column', _vc_add_stick_to_parent() );
/**
* Preview Video Settings for VC Module
*
* @param string group
*
* @return array
*
* @access private
* @since 4.9.5
*/
function _vc_add_video_preview_settings_to_vc_modules( $group = 'Video') {
return array(
array(
'type' => 'checkbox',
'heading' => __( 'Activate Preview Video?', 'unitedthemes' ),
'param_name' => 'video_bg',
'edit_field_class' => 'vc_col-sm-8',
'value' => array( __( 'Yes', 'unitedthemes' ) => 'yes' ),
'group' => $group
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Play Preview Video only?', 'unitedthemes' ),
'description' => esc_html__( 'This will deactivate all other video settings and only play the preview video without any further interactions.', 'unitedthemes'),
'param_name' => 'preview_only',
'group' => $group,
'value' => array(
esc_html__( 'no, thanks!', 'unitedthemes' ) => 'off',
esc_html__( 'yes, please!', 'unitedthemes' ) => 'on'
),
'dependency' => array(
'element' => 'video_bg',
'not_empty' => true
)
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Preview Video Play Event', 'unitedthemes' ),
'description' => __( 'Choose when the video should start playing. There are 3 different events available.', 'unitedthemes' ),
'param_name' => 'play_event',
'std' => 'default',
'group' => $group,
'value' => array(
esc_html__( 'Autoplay Video on Load?', 'unitedthemes' ) => 'on_load',
esc_html__( 'Autoplay Video on Scroll (Appear)?', 'unitedthemes' ) => 'on_appear',
esc_html__( 'Autoplay Video on Mouse Hover?', 'unitedthemes' ) => 'on_hover'
),
'dependency' => array(
'element' => 'video_bg',
'not_empty' => true
)
),
array(
'type' => 'dropdown',
'heading' => esc_html__( 'Loop Preview Video?', 'unitedthemes' ),
'description' => esc_html__( 'When present, it specifies that the video will start over again, every time it is finished.', 'unitedthemes'),
'param_name' => 'loop',
'group' => $group,
'value' => array(
esc_html__( 'yes, please!', 'unitedthemes' ) => 'on',
esc_html__( 'no, thanks!', 'unitedthemes' ) => 'off'
),
'dependency' => array(
'element' => 'video_bg',
'not_empty' => true
)
),
array(
'type' => 'checkbox',
'heading' => __( 'Add WebM / OGG Support?', 'unitedthemes' ),
'param_name' => 'selfhosted_web_ogg',
'value' => array(
__( 'Yes', 'unitedthemes' ) => 'yes'
),
'edit_field_class' => 'vc_col-sm-4',
'group' => $group,
'dependency' => array(
'element' => 'video_bg',
'not_empty' => true
)
),
array(
'type' => 'filepicker',
'heading' => __( 'Video MP4', 'unitedthemes' ),
'edit_field_class' => 'vc_col-sm-4',
'param_name' => 'mp4',
'group' => $group,
'dependency' => array(
'element' => 'video_bg',
'not_empty' => true
)
),
array(
'type' => 'filepicker',
'heading' => __( 'Video OGG', 'unitedthemes' ),
'edit_field_class' => 'vc_col-sm-4',
'param_name' => 'ogg',
'group' => $group,
'dependency' => array(
'element' => 'selfhosted_web_ogg',
'not_empty' => true
)
),
array(
'type' => 'filepicker',
'heading' => __( 'Video WEBM', 'unitedthemes' ),
'edit_field_class' => 'vc_col-sm-4',
'param_name' => 'webm',
'group' => $group,
'dependency' => array(
'element' => 'selfhosted_web_ogg',
'not_empty' => true
)
),
);
}
vc_add_params( 'ut_video_player', _vc_add_video_preview_settings_to_vc_modules( 'General' ) );
/**
* Background Text
*
* @return array
*
* @access private
* @since 4.9.7.6
*/
function _vc_add_background_text_settings_to_vc_row() {
if( function_exists('ut_get_custom_fonts' )) {
return array(
array(
'type' => 'dropdown',
'heading' => esc_html__('Activate Background Text?', 'unitedthemes'),
'param_name' => 'bklyn_activate_background_text',
'value' => array(
esc_html__('off', 'unitedthemes') => '',
esc_html__('on', 'unitedthemes') => 'on'
),
'group' => 'Background Text'
),
array(
'type' => 'textfield',
'heading' => __('Background Text', 'unitedthemes'),
'param_name' => 'bklyn_background_text',
'description' => __('Please use short text parts!', 'unitedthemes'),
'group' => 'Background Text',
'dependency' => array(
'element' => 'bklyn_activate_background_text',
'value' => array('on')
)
),
array(
'type' => 'ut_option_separator',
'group' => 'Background Text',
'param_name' => 'appearance_info',
'info' => esc_html__('Appearance', 'unitedthemes'),
'dependency' => array(
'element' => 'bklyn_activate_background_text',
'value' => array('on')
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__('Hide on Desktop?', 'unitedthemes'),
'param_name' => 'bklyn_background_hide_on_desktop',
'value' => array(
esc_html__('off', 'unitedthemes') => '',
esc_html__('on', 'unitedthemes') => 'true'
),
'group' => 'Background Text',
'edit_field_class' => 'vc_col-sm-4',
'dependency' => array(
'element' => 'bklyn_activate_background_text',
'value' => array('on')
)
),
array(
'type' => 'dropdown',
'heading' => esc_html__('Hide on Tablet?', 'unitedthemes'),
'param_name' => 'bklyn_background_hide_on_tablet',
'value' => array(
esc_html__('off', 'unitedthemes') => '',
esc_html__('on', 'unitedthemes') => 'true'
),
'group' => 'Background Text',
'edit_field_class' => 'vc_col-sm-4',
'dependency' => array(
'element' => 'bklyn_activate_background_text',
'value' => array('on')
)
),
array(
'type' => 'dropdown',
'heading' => esc_html__('Hide on Mobile?', 'unitedthemes'),
'param_name' => 'bklyn_background_hide_on_mobile',
'value' => array(
esc_html__('off', 'unitedthemes') => '',
esc_html__('on', 'unitedthemes') => 'true'
),
'group' => 'Background Text',
'edit_field_class' => 'vc_col-sm-4',
'dependency' => array(
'element' => 'bklyn_activate_background_text',
'value' => array('on')
)
),
array(
'type' => 'gradient_picker',
'heading' => esc_html__('Text Color', 'unitedthemes'),
'description' => __('Select your background text color.', 'unitedthemes'),
'param_name' => 'bklyn_background_text_color',
'edit_field_class' => 'vc_col-sm-6',
'group' => 'Background Text',
'dependency' => array(
'element' => 'bklyn_activate_background_text',
'value' => array('on')
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__('Animate Background Text?', 'unitedthemes'),
'param_name' => 'bklyn_animate_background_text',
'value' => array(
esc_html__('off', 'unitedthemes') => 'off',
esc_html__('animate once (when entering viewport)', 'unitedthemes') => 'once',
esc_html__('infinite (everytime entering viewport)', 'unitedthemes') => 'infinite',
),
'group' => 'Background Text',
'dependency' => array(
'element' => 'bklyn_activate_background_text',
'value' => array('on')
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__('Activate Text Stroke?', 'unitedthemes'),
'param_name' => 'bklyn_background_text_stroke_effect',
'group' => 'Background Text',
'value' => array(
esc_html__('global (Theme Options)', 'unitedthemes') => 'global',
esc_html__('no', 'unitedthemes') => 'no',
esc_html__('yes', 'unitedthemes') => 'yes'
),
'dependency' => array(
'element' => 'bklyn_activate_background_text',
'value' => array('on')
),
),
array(
'type' => 'colorpicker',
'heading' => esc_html__('Stroke Color', 'unitedthemes'),
'param_name' => 'bklyn_background_text_stroke_color',
'group' => 'Background Text',
'edit_field_class' => 'vc_col-sm-6',
'dependency' => array(
'element' => 'bklyn_background_text_stroke_effect',
'value' => array('yes'),
)
),
array(
'type' => 'range_slider',
'heading' => esc_html__('Stroke Width', 'unitedthemes'),
'param_name' => 'bklyn_background_text_stroke_width',
'edit_field_class' => 'vc_col-sm-6',
'group' => 'Background Text',
'value' => array(
'default' => '1',
'min' => '1',
'max' => '6',
'step' => '1',
'unit' => 'px'
),
'dependency' => array(
'element' => 'bklyn_background_text_stroke_effect',
'value' => array('yes'),
)
),
array(
'type' => 'ut_option_separator',
'group' => 'Background Text',
'param_name' => 'font_settings_info',
'info' => esc_html__('Font Settings', 'unitedthemes'),
'dependency' => array(
'element' => 'bklyn_activate_background_text',
'value' => array('on')
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__('Choose Font Source', 'unitedthemes'),
'param_name' => 'bklyn_background_text_font_source',
'group' => 'Background Text',
'value' => array(
esc_html__('Theme Default', 'unitedthemes') => 'default',
esc_html__('Web Safe Fonts', 'unitedthemes') => 'websafe',
esc_html__('Google Font', 'unitedthemes') => 'google',
esc_html__('Custom Font', 'unitedthemes') => 'custom',
),
'dependency' => array(
'element' => 'bklyn_activate_background_text',
'value' => array('on')
)
),
array(
'type' => 'google_fonts',
'param_name' => 'bklyn_background_text_google_fonts',
'value' => 'font_family:Abril%20Fatface%3Aregular|font_style:400%20regular%3A400%3Anormal',
'group' => 'Background Text',
'settings' => array(
'fields' => array(
'font_family_description' => __('Select font family.', 'unitedthemes'),
'font_style_description' => __('Select font styling.', 'unitedthemes'),
),
),
'dependency' => array(
'element' => 'bklyn_background_text_font_source',
'value' => 'google',
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__('Websafe Fonts', 'unitedthemes'),
'param_name' => 'bklyn_background_text_websafe_fonts',
'group' => 'Background Text',
'value' => array(
esc_html__('Arial', 'unite') => 'arial',
esc_html__('Comic Sans', 'unite') => 'comic',
esc_html__('Georgia', 'unite') => 'georgia',
esc_html__('Helvetica', 'unite') => 'helvetica',
esc_html__('Impact', 'unite') => 'impact',
esc_html__('Lucida Sans', 'unite') => 'lucida_sans',
esc_html__('Lucida Console', 'unite') => 'lucida_console',
esc_html__('Palatino', 'unite') => 'palatino',
esc_html__('Tahoma', 'unite') => 'tahoma',
esc_html__('Times New Roman', 'unite') => 'times',
esc_html__('Trebuchet', 'unite') => 'trebuchet',
esc_html__('Verdana', 'unite') => 'verdana'
),
'dependency' => array(
'element' => 'bklyn_background_text_font_source',
'value' => 'websafe',
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__('Custom Fonts', 'unitedthemes'),
'param_name' => 'bklyn_background_text_custom_fonts',
'group' => 'Background Text',
'value' => ut_get_custom_fonts(),
'dependency' => array(
'element' => 'bklyn_background_text_font_source',
'value' => 'custom',
),
),
array(
'type' => 'breakpoint_range_slider',
'param_name' => 'bklyn_background_text_font_size',
'param_responsive' => 'background_text',
'unit_support' => true,
'in_module' => 'background_text',
'heading' => esc_html__('Title Font Size', 'unitedthemes'),
'kb_link' => 'https://knowledgebase.unitedthemes.com/docs/responsive-font-settings/',
'edit_field_class' => 'vc_col-sm-12 ut-responsive-slider-tab-group ut-responsive-slider-tab-group-first',
'group' => 'Background Text',
'value' => array(
'default' => ut_get_theme_options_font_setting('background_text', 'font-size', "48"),
'min' => '8',
'max' => '300',
'step' => '1',
'unit' => 'px'
),
'dependency' => array(
'element' => 'bklyn_activate_background_text',
'value' => array('on')
)
),
array(
'type' => 'breakpoint_range_slider',
'param_name' => 'bklyn_background_text_line_height',
'param_responsive' => 'background_text',
'unit_support' => true,
'in_module' => 'background_text',
'heading' => esc_html__('Title Line Height', 'unitedthemes'),
'edit_field_class' => 'vc_col-sm-12 ut-responsive-slider-tab-group',
'group' => 'Background Text',
'value' => array(
'default' => ut_get_theme_options_font_setting('background_text', 'line-height', "auto"),
'min' => '0',
'max' => '400',
'step' => '1',
'unit' => ut_get_theme_options_font_setting('background_text', 'line-height-unit', "px"),
'fallback_unit' => 'px'
),
'dependency' => array(
'element' => 'bklyn_activate_background_text',
'value' => array('on')
)
),
array(
'type' => 'breakpoint_range_slider',
'param_name' => 'bklyn_background_text_letter_spacing',
'param_responsive' => 'background_text',
'in_module' => 'background_text',
'heading' => esc_html__('Title Letter Spacing', 'unitedthemes'),
'description' => esc_html__('If font size unit px is selected, inherited values result in auto generated font sizes. The theme tries to calculate a font size which fits the location. Other font size units, do not have this auto calculation, which means the font size from the larger breakpoint applies.', 'unitedthemes'),
'edit_field_class' => 'vc_col-sm-12 ut-responsive-slider-tab-group ut-responsive-slider-tab-group-last',
'group' => 'Background Text',
'value' => array(
'def' => ut_get_theme_options_font_setting('background_text', 'letter-spacing', "0"),
'min' => '-0.2',
'max' => '0.2',
'step' => '0.01',
'unit' => 'em'
),
'dependency' => array(
'element' => 'bklyn_activate_background_text',
'value' => array('on')
)
),
array(
'type' => 'dropdown',
'heading' => esc_html__('Title Font Weight', 'unitedthemes'),
'param_name' => 'bklyn_background_text_font_weight',
'group' => 'Background Text',
'value' => array(
esc_html__('Select Font Weight', 'unitedthemes') => '',
esc_html__('Default (Theme Options)', 'unitedthemes') => 'global',
esc_html__('normal', 'unitedthemes') => 'normal',
esc_html__('bold', 'unitedthemes') => 'bold',
esc_html__('100', 'unitedthemes') => 100,
esc_html__('200', 'unitedthemes') => 200,
esc_html__('300', 'unitedthemes') => 300,
esc_html__('400', 'unitedthemes') => 400,
esc_html__('500', 'unitedthemes') => 500,
esc_html__('600', 'unitedthemes') => 600,
esc_html__('700', 'unitedthemes') => 700,
esc_html__('800', 'unitedthemes') => 800,
esc_html__('900', 'unitedthemes') => 900,
),
'dependency' => array(
'element' => 'bklyn_background_text_font_source',
'value' => array('websafe', 'theme'),
),
),
array(
'type' => 'ut_option_separator',
'group' => 'Background Text',
'param_name' => 'position_info',
'info' => esc_html__('Text Position', 'unitedthemes'),
'dependency' => array(
'element' => 'bklyn_activate_background_text',
'value' => array('on')
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__('Background Position', 'unitedthemes'),
'param_name' => 'bklyn_background_text_position',
'value' => array(
esc_html__('Select Position', 'unite') => '',
esc_html__('left top', 'unite') => 'left-top',
esc_html__('left center', 'unite') => 'left-center',
esc_html__('left bottom', 'unite') => 'left-bottom',
esc_html__('center top', 'unite') => 'center-top',
esc_html__('center center', 'unite') => 'center-center',
esc_html__('center bottom', 'unite') => 'center-bottom',
esc_html__('right top', 'unite') => 'right-top',
esc_html__('right center', 'unite') => 'right-center',
esc_html__('right bottom', 'unite') => 'right-bottom',
esc_html__('Custom Position (Advanced User)', 'unite') => 'custom'
),
'group' => 'Background Text',
'dependency' => array(
'element' => 'bklyn_activate_background_text',
'value' => array('on')
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__('Background Position (Tablet)', 'unitedthemes'),
'param_name' => 'bklyn_background_text_position_tablet',
'value' => array(
esc_html__('inherit from larger', 'unite') => 'inherit',
esc_html__('left top', 'unite') => 'left-top',
esc_html__('left center', 'unite') => 'left-center',
esc_html__('left bottom', 'unite') => 'left-bottom',
esc_html__('center top', 'unite') => 'center-top',
esc_html__('center center', 'unite') => 'center-center',
esc_html__('center bottom', 'unite') => 'center-bottom',
esc_html__('right top', 'unite') => 'right-top',
esc_html__('right center', 'unite') => 'right-center',
esc_html__('right bottom', 'unite') => 'right-bottom',
),
'group' => 'Background Text',
'dependency' => array(
'element' => 'bklyn_background_text_position',
'value_not_equal_to' => array('custom')
),
),
array(
'type' => 'dropdown',
'heading' => esc_html__('Background Position (Mobile)', 'unitedthemes'),
'param_name' => 'bklyn_background_text_position_mobile',
'value' => array(
esc_html__('inherit from larger', 'unite') => 'inherit',
esc_html__('left top', 'unite') => 'left-top',
esc_html__('left center', 'unite') => 'left-center',
esc_html__('left bottom', 'unite') => 'left-bottom',
esc_html__('center top', 'unite') => 'center-top',
esc_html__('center center', 'unite') => 'center-center',
esc_html__('center bottom', 'unite') => 'center-bottom',
esc_html__('right top', 'unite') => 'right-top',
esc_html__('right center', 'unite') => 'right-center',
esc_html__('right bottom', 'unite') => 'right-bottom',
),
'group' => 'Background Text',
'dependency' => array(
'element' => 'bklyn_background_text_position',
'value_not_equal_to' => array('custom')
),
),
array(
'type' => 'textfield',
'heading' => esc_html__('Background Position X (Desktop)', 'unitedthemes'),
'param_name' => 'bklyn_background_text_position_x',
'edit_field_class' => 'vc_col-sm-6',
'dependency' => array(
'element' => 'bklyn_background_text_position',
'value' => array('custom')
),
'group' => 'Background Text',
),
array(
'type' => 'textfield',
'heading' => esc_html__('Background Position Y (Desktop)', 'unitedthemes'),
'param_name' => 'bklyn_background_text_position_y',
'edit_field_class' => 'vc_col-sm-6',
'dependency' => array(
'element' => 'bklyn_background_text_position',
'value' => array('custom')
),
'group' => 'Background Text',
),
array(
'type' => 'textfield',
'heading' => esc_html__('Background Position X (Medium Desktop)', 'unitedthemes'),
'description' => esc_html__('Screen width between 1025px and 1600px.', 'unitedthemes'),
'param_name' => 'bklyn_background_text_position_x_medium',
'edit_field_class' => 'vc_col-sm-6',
'dependency' => array(
'element' => 'bklyn_background_text_position',
'value' => array('custom')
),
'group' => 'Background Text',
),
array(
'type' => 'textfield',
'heading' => esc_html__('Background Position Y (Medium Desktop)', 'unitedthemes'),
'description' => esc_html__('Screen width between 1025px and 1600px.', 'unitedthemes'),
'param_name' => 'bklyn_background_text_position_y_medium',
'edit_field_class' => 'vc_col-sm-6',
'dependency' => array(
'element' => 'bklyn_background_text_position',
'value' => array('custom')
),
'group' => 'Background Text',
),
array(
'type' => 'textfield',
'heading' => esc_html__('Background Position X (Tablet)', 'unitedthemes'),
'description' => esc_html__('Screen width between 768px and 1024px.', 'unitedthemes'),
'param_name' => 'bklyn_background_text_position_x_tablet',
'edit_field_class' => 'vc_col-sm-6',
'dependency' => array(
'element' => 'bklyn_background_text_position',
'value' => array('custom')
),
'group' => 'Background Text',
),
array(
'type' => 'textfield',
'heading' => esc_html__('Background Position Y (Tablet)', 'unitedthemes'),
'description' => esc_html__('Screen width between 768px and 1024px.', 'unitedthemes'),
'param_name' => 'bklyn_background_text_position_y_tablet',
'edit_field_class' => 'vc_col-sm-6',
'dependency' => array(
'element' => 'bklyn_background_text_position',
'value' => array('custom')
),
'group' => 'Background Text',
),
array(
'type' => 'textfield',
'heading' => esc_html__('Background Position X (Mobile)', 'unitedthemes'),
'description' => esc_html__('Screen width up to 767px.', 'unitedthemes'),
'param_name' => 'bklyn_background_text_position_x_mobile',
'edit_field_class' => 'vc_col-sm-6',
'dependency' => array(
'element' => 'bklyn_background_text_position',
'value' => array('custom')
),
'group' => 'Background Text',
),
array(
'type' => 'textfield',
'heading' => esc_html__('Background Position Y (Mobile)', 'unitedthemes'),
'description' => esc_html__('Screen width up to 767px.', 'unitedthemes'),
'param_name' => 'bklyn_background_text_position_y_mobile',
'edit_field_class' => 'vc_col-sm-6',
'dependency' => array(
'element' => 'bklyn_background_text_position',
'value' => array('custom')
),
'group' => 'Background Text',
),
array(
'type' => 'textfield',
'heading' => esc_html__('Custom z-index', 'unitedthemes'),
'param_name' => 'bklyn_background_text_z_index',
'group' => 'Background Text',
),
);
}
}
vc_add_params( 'vc_section', _vc_add_background_text_settings_to_vc_row() );
vc_add_params( 'vc_row', _vc_add_background_text_settings_to_vc_row() );
vc_add_params( 'vc_row_inner', _vc_add_background_text_settings_to_vc_row() );
vc_add_params( 'vc_column', _vc_add_background_text_settings_to_vc_row() );
vc_add_params( 'vc_column_inner', _vc_add_background_text_settings_to_vc_row() );
function ut_create_split_text( $text ) {
if ( ! empty( $text ) ) {
$split_text = preg_split( '~~u', $text, - 1, PREG_SPLIT_NO_EMPTY );
foreach ( $split_text as $key => $value ) {
$value = $value == ' ' ? ' ' : $value;
$split_text[ $key ] = '<span class="bklyn-background-text-character">' . $value . '</span>';
}
return implode( '', $split_text );
}
return $text;
}
function ut_create_background_text_template( $atts, $el_id, $shortcode = '' ) {
$id = $el_id;
$bklyn_background_text_position = $bklyn_background_hide_on_desktop = $bklyn_background_hide_on_tablet = $bklyn_background_hide_on_mobile = $bklyn_background_text_letter_spacing = $bklyn_background_text_line_height = $bklyn_background_text_font_size = '';
/**
* @var string $bklyn_background_text
* @var string $bklyn_background_text_position
* @var string $bklyn_background_text_font_size
* @var string $bklyn_background_text_line_height
* @var string $bklyn_background_text_letter_spacing
* @var string $bklyn_animate_background_text
* @var string $bklyn_background_text_line_height
*
* @var string $bklyn_background_hide_on_desktop
* @var string $bklyn_background_hide_on_tablet
* @var string $bklyn_background_hide_on_mobile
*
* @var string $bklyn_background_text_position_mobile
* @var string $bklyn_background_text_position_tablet
*/
extract( $atts );
// responsive font settings attributes
$responsive_font_attributes = UT_Responsive_Text::prepare_js_data_object('background_text', array(
'font-size' => $bklyn_background_text_font_size,
'line-height' => $bklyn_background_text_line_height,
'letter-spacing' => $bklyn_background_text_letter_spacing
) );
$classes = $inner_classes = array();
if( $bklyn_background_text_line_height ) {
$classes[] = 'element-with-custom-line-height';
}
/* position */
if( $bklyn_background_text_position != 'custom' ) {
$classes[] = 'bklyn-background-text-' . $bklyn_background_text_position;
}
if( $bklyn_background_text_position != 'custom' && $bklyn_background_text_position_mobile != 'inherit' ) {
$classes[] = 'bklyn-background-text-mobile-' . $bklyn_background_text_position_mobile;
}
if( $bklyn_background_text_position != 'custom' && $bklyn_background_text_position_tablet != 'inherit' ) {
$classes[] = 'bklyn-background-text-tablet-' . $bklyn_background_text_position_tablet;
}
/* responsive */
if( $bklyn_background_hide_on_desktop ) {
$classes[] = 'hide-on-desktop';
}
if( $bklyn_background_hide_on_tablet ) {
$classes[] = 'hide-on-tablet';
}
if( $bklyn_background_hide_on_mobile ) {
$classes[] = 'hide-on-mobile';
}
if( $bklyn_animate_background_text !== 'off' ) {
$classes[] = 'bklyn-background-text-animated';
}
// gradient color check
$bklyn_background_text_color = !empty( $bklyn_background_text_color ) ? $bklyn_background_text_color : ot_get_option('ut_global_background_text_color', '#333');
$inner_classes[] = $bklyn_background_text_color && ut_is_gradient( $bklyn_background_text_color ) ? 'ut-element-with-gradient' : '';
ob_start(); ?>
<div class="bklyn-background-text-holder <?php echo esc_attr( implode(" ", $classes ) ); ?>" data-animate="<?php echo esc_attr( $bklyn_animate_background_text ); ?>">
<span class="bklyn-background-text <?php echo esc_attr( implode(" ", $inner_classes ) ); ?>" <?php echo ut_safe_output( $responsive_font_attributes ); ?>>
<?php echo wp_kses_post( ut_create_split_text($bklyn_background_text ) ); ?>
</span>
<?php ut_create_background_text_css( $atts, $id, $shortcode ); ?>
</div>
<?php
return ob_get_clean();
}
function ut_create_background_text_css( $atts, $el_id, $shortcode = '' ) {
$id = $el_id;
/**
* @var string $bklyn_background_text_stroke_effect
* @var string $bklyn_background_text_stroke_color
* @var string $bklyn_background_text_stroke_width
* @var string $bklyn_background_text_color
* @var string $bklyn_background_text_position
* @var string $bklyn_background_text_position_x
* @var string $bklyn_background_text_position_y
* @var string $bklyn_background_text_position_x_medium
* @var string $bklyn_background_text_position_y_medium
* @var string $bklyn_background_text_position_x_tablet
* @var string $bklyn_background_text_position_y_tablet
* @var string $bklyn_background_text_position_x_mobile
* @var string $bklyn_background_text_position_y_mobile
* @var string $bklyn_background_text_font_size
* @var string $bklyn_background_text_line_height
* @var string $bklyn_background_text_letter_spacing
* @var string $bklyn_background_text_font_weight
* @var string $bklyn_background_text_font_source
* @var string $bklyn_background_text_websafe_fonts
* @var string $bklyn_background_text_custom_fonts
*/
extract( $atts );
$ut_font_css = false;
/* initialize google font */
if( $bklyn_background_text_font_source && $bklyn_background_text_font_source == 'google' ) {
$ut_google_font = new UT_VC_Google_Fonts( $atts, 'bklyn_background_text_google_fonts', $shortcode );
$ut_font_css = $ut_google_font->get_google_fonts_css_styles();
$ut_font_css = is_array( $ut_font_css ) ? implode( '', $ut_font_css ) : $ut_font_css;
}
echo '<style type="text/css">';
/* text color */
$bklyn_background_text_color = !empty( $bklyn_background_text_color ) ? $bklyn_background_text_color : ot_get_option('ut_global_background_text_color', '#333');
if( $bklyn_background_text_color && ut_is_gradient( $bklyn_background_text_color ) ) {
echo ut_create_gradient_css( $bklyn_background_text_color, '#' . $id . ' .bklyn-background-text' , false, 'background' );
} else {
echo '#' . $id . ' .bklyn-background-text {
color: ' . $bklyn_background_text_color . ';
}';
}
/* google font */
if( $ut_font_css ) {
echo '#' . $id . ' .bklyn-background-text { ' . $ut_font_css . ' }';
}
/* websafe font */
if( $bklyn_background_text_font_source && $bklyn_background_text_font_source == 'websafe' ) {
echo '#' . $id . ' .bklyn-background-text { font-family: ' . get_websafe_font_css_family( $bklyn_background_text_websafe_fonts ) . '; }';
}
/* custom font */
if( $bklyn_background_text_font_source && $bklyn_background_text_font_source == 'custom' && $bklyn_background_text_custom_fonts ) {
if( is_numeric( $bklyn_background_text_custom_fonts ) ) {
$font_family = get_term($bklyn_background_text_custom_fonts,'unite_custom_fonts');
if( isset( $font_family->name ) )
echo '#' . $id . ' .bklyn-background-text { font-family: "' . $font_family->name . '"; }';
} else {
echo '#' . $id . ' .bklyn-background-text { font-family: "' . $bklyn_background_text_custom_fonts . '"; }';
}
}
/* font weight */
if( $bklyn_background_text_font_weight && $bklyn_background_text_font_weight != 'global' ) {
echo '#' . $id . ' .bklyn-background-text { font-weight:' . $bklyn_background_text_font_weight . '; }';
}
/* z-index */
if( !empty( $bklyn_background_text_z_index ) ) {
echo '#' . $id . ' .bklyn-background-text-holder { z-index:' . $bklyn_background_text_z_index . '; }';
}
echo UT_Responsive_Text::responsive_font_css( '#' . $id . ' .bklyn-background-text' , array(
'font-size' => $bklyn_background_text_font_size ?? '',
'line-height' => $bklyn_background_text_line_height ?? '',
'letter-spacing' => $bklyn_background_text_letter_spacing
), 'background_text' );
if( $bklyn_background_text_stroke_effect == 'yes' ) {
echo '#' . $id . ' .bklyn-background-text {
-moz-text-stroke-color: ' . $bklyn_background_text_stroke_color .';
-webkit-text-stroke-color: ' . $bklyn_background_text_stroke_color .';
-moz-text-stroke-width: ' . $bklyn_background_text_stroke_width .'px;
-webkit-text-stroke-width: ' . $bklyn_background_text_stroke_width .'px;
}';
}
if( $bklyn_background_text_stroke_effect == 'global' && function_exists('ot_get_option') && ot_get_option( 'ut_global_background_text_stroke_effect' ) == 'on' ) {
echo '#' . $id . ' .bklyn-background-text {
-moz-text-stroke-color: ' . ot_get_option('ut_global_background_text_stroke_color') .';
-webkit-text-stroke-color: ' . ot_get_option('ut_global_background_text_stroke_color') .';
-moz-text-stroke-width: ' . ot_get_option('ut_global_background_text_stroke_width', 1 ) .'px;
-webkit-text-stroke-width: ' . ot_get_option('ut_global_background_text_stroke_width', 1 ) .'px;
}';
}
$css = $css_medium = $css_tablet = $css_mobile = array('position' => 'relative');
// custom background position
if( $bklyn_background_text_position == 'custom' && $bklyn_background_text_position_x && $bklyn_background_text_position_y ) {
$css['left'] = $bklyn_background_text_position_x . ' !important';
$css['top'] = $bklyn_background_text_position_y . ' !important';
}
// custom background position medium desktop
if( $bklyn_background_text_position == 'custom' && $bklyn_background_text_position_x_medium && $bklyn_background_text_position_y_medium ) {
$css_medium['left'] = $bklyn_background_text_position_x_medium . ' !important';
$css_medium['top'] = $bklyn_background_text_position_y_medium . ' !important';
}
// custom background position tablet
if( $bklyn_background_text_position == 'custom' && $bklyn_background_text_position_x_tablet && $bklyn_background_text_position_y_tablet ) {
$css_tablet['left'] = $bklyn_background_text_position_x_tablet . ' !important';
$css_tablet['top'] = $bklyn_background_text_position_y_tablet . ' !important';
}
// custom background position mobile
if( $bklyn_background_text_position == 'custom' && $bklyn_background_text_position_x_mobile && $bklyn_background_text_position_y_mobile ) {
$css_mobile['left'] = $bklyn_background_text_position_x_mobile . ' !important';
$css_mobile['top'] = $bklyn_background_text_position_y_mobile . ' !important';
}
if( !empty( $css ) ) {
echo '#' . $id . ' .bklyn-background-text {' . implode_with_key( $css ) . '}';
}
if( !empty( $css_medium ) ) {
echo '@media (min-width: 1025px) and (max-width: 1600px) { #' . $id . ' .bklyn-background-text {' . implode_with_key( $css_medium ) . '} }';
}
if( !empty( $css_tablet ) ) {
echo '@media (min-width: 768px) and (max-width: 1024px) { #' . $id . ' .bklyn-background-text {' . implode_with_key( $css_tablet ) . '} }';
}
if( !empty( $css_mobile ) ) {
echo '@media (max-width: 767px) { #' . $id . ' .bklyn-background-text {' . implode_with_key( $css_mobile ) . '} }';
}
echo '</style>';
}