Current File : /home/kelaby89/cartel.express/wp-content/plugins/trx_addons/templates/tpl.sc_titles.php |
<?php
/**
* The template to display shortcode's title, subtitle and description
*
* @package ThemeREX Addons
* @since v1.6.08
*/
extract(get_query_var('trx_addons_args_sc_show_titles'));
// If called not from Elementor - add border and background image styles
$add_class = '';
if ( ! isset( $args['gradient_direction_extra'] ) ) {
$border_width = ! empty( $args['title_border_width'] ) ? (int)$args['title_border_width'] : '';
$border_color = ! empty( $args['title_border_color'] ) ? trim( $args['title_border_color'] ) : '';
$bg_image = ! empty( $args['title_bg_image'] ) ? trx_addons_get_attachment_url( $args['title_bg_image'] ) : '';
if ( ! empty( $border_width ) && ! empty( $border_color ) ) {
$add_class = 'sc_item_title_text_with_border '
. trx_addons_add_inline_css_class(
sprintf( '-webkit-text-stroke-color:%1$s; -webkit-text-stroke-width:%2$s;',
$border_color,
trx_addons_prepare_css_value( $border_width )
)
);
}
if ( ! empty( $bg_image ) ) {
$add_class .= ( ! empty( $add_class ) ? ' ' : '' )
. 'sc_item_title_text_with_bg_image '
. trx_addons_add_inline_css_class(
'-webkit-text-fill-color: transparent;'
. '-webkit-background-clip:text;'
. 'background-clip:text;'
. 'background-position:center center;'
. 'background-size:cover;'
. 'background-image:url(' . esc_url( $bg_image ) . ');'
);
}
}
if (empty($args['title_align'])) $args['title_align'] = 'none';
if (empty($args['subtitle_align'])) $args['subtitle_align'] = 'none';
if (empty($args['subtitle_position'])) $args['subtitle_position'] = 'above';
$align = !trx_addons_is_off($args['title_align']) ? ' sc_align_'.trim($args['title_align']) : '';
$style = !empty($args['title_style']) ? ' sc_item_title_style_'.trim($args['title_style']) : '';
$subtitle = '';
if (!empty($args['subtitle'])) {
$subtitle_align = trx_addons_is_off($args['subtitle_align']) ? $align : ' sc_align_'.trim($args['subtitle_align']);
$subtitle .= '<span class="' . esc_attr( apply_filters(
'trx_addons_filter_sc_item_subtitle_class',
'sc_item_subtitle'
. ' ' . $sc . '_subtitle'
. $subtitle_align
. ' sc_item_subtitle_' . esc_attr($args['subtitle_position'])
. $style
. ( ! empty( $args['subtitle_color'] )
? ' sc_item_subtitle_with_custom_color ' . trx_addons_add_inline_css_class( 'color: ' . esc_attr( $args['subtitle_color'] ) . ( trx_addons_is_preview('gb') ? ' !important' : '' ) . ';' )
: ''
),
$sc,
$args
) )
. '">'
. trx_addons_prepare_macros($args['subtitle'])
. '</span>';
}
if ($args['subtitle_position'] == 'above' && (empty($args['title']) || trx_addons_is_off($args['subtitle_align']) || $args['subtitle_align'] == $args['title_align'])) {
trx_addons_show_layout($subtitle);
}
if ( ! empty( $args['title'] ) ) {
// Dual title
$dual_open = apply_filters( 'trx_addons_filter_dual_title_open', '[[' );
$dual_close = apply_filters( 'trx_addons_filter_dual_title_close', ']]' );
// Append 'title2' to 'title'
if ( ! empty( $args['title2'] ) ) {
$args['title'] .= $dual_open . $args['title2'] . $dual_close;
}
// Prepare a 'typed' part
if ( ! empty( $args['typed'] ) && ! empty( $args['typed_strings'] ) ) {
// Don't process strings with 'trim' to enable single type behaviour (when the single string is passed)
$typed_strings = explode( "\n", strip_tags( $args['typed_strings'] ) );
if ( strpos( $args['title'], $typed_strings[0] ) !== false ) {
wp_enqueue_script( 'typed', trx_addons_get_file_url('js/typed/typed.min.js'), array('jquery'), null, true );
$args['title'] = str_replace(
$typed_strings[0],
'<span class="sc_typed_entry'
. ( !empty($args['typed_color']) ? ' ' . trx_addons_add_inline_css_class('color: ' . esc_attr($args['typed_color']) . ' !important') : '')
. '"'
. ' data-strings="' . esc_attr( json_encode($typed_strings) ) . '"'
. ' data-loop="' . esc_attr( !empty($args['typed_loop']) ? 1 : 0 ) . '"'
. ' data-cursor="' . esc_attr( !isset($args['typed_cursor']) || !empty($args['typed_cursor']) ? 1 : 0 ) . '"'
. ' data-cursor-char="' . esc_attr( !empty($args['typed_cursor_char']) ? $args['typed_cursor_char'] : '|' ) . '"'
. ' data-speed="' . esc_attr( !empty($args['typed_speed']) ? $args['typed_speed'] : 6 ) . '"'
. ' data-delay="' . esc_attr( !empty($args['typed_delay']) ? $args['typed_delay'] : 1 ) . '"'
. '>' . $typed_strings[0] . '</span>',
$args['title']
);
}
}
if ( empty($size) ) $size = 'large'; //is_page() ? 'large' : 'normal';
$title_tag = ! empty($args['title_tag']) && !trx_addons_is_off($args['title_tag'])
? $args['title_tag']
: apply_filters( 'trx_addons_filter_sc_item_title_tag', 'large' == $size ? 'h2' : ('tiny' == $size ? 'h4' : 'h3'), $sc, $args );
$title_tag_class = ( ! empty($args['title_tag']) && ! trx_addons_is_off($args['title_tag'])
? ' sc_item_title_tag'
: ''
)
. ( ! empty($args['title_color']) && $args['title_style'] != 'gradient'
? ' ' . trx_addons_add_inline_css_class('color:' . esc_attr($args['title_color']) . ' !important')
: ''
)
. ( ! empty($args['typed'])
? ' sc_typed'
: ''
);
?><<?php echo esc_attr($title_tag); ?> class="<?php
echo esc_attr( apply_filters( 'trx_addons_filter_sc_item_title_class',
'sc_item_title ' . $sc . '_title' . $align . $style . $title_tag_class,
$sc,
$args
) );
?>"
<?php do_action('trx_addons_action_sc_item_title_data', $sc, $args ); ?>
><?php
if ( !trx_addons_is_off($args['subtitle_align']) && $args['subtitle_align'] != $args['title_align']) {
echo '<span class="sc_item_title_inner">';
if ($args['subtitle_position'] == 'above') {
trx_addons_show_layout($subtitle);
}
}
// Decorate gradient
$add_style = '';
if ( $args['title_style'] == 'gradient' ) {
if ( empty( $args['gradient_fill'] ) ) {
$args['gradient_fill'] = 'block';
}
if ( empty( $args['gradient_direction'] ) ) {
$args['gradient_direction'] = 0;
}
$add_class .= ' trx_addons_text_gradient trx_addons_text_gradient_fill_' . esc_attr( $args['gradient_fill'] );
$add_style = ! empty( $args['title_color'] )
? ' style="'
. 'color:' . esc_attr($args['title_color']) . ';'
. 'background:' . esc_attr($args['title_color']) . ';'
. 'background:linear-gradient('
. max(0, min(360, (int) $args['gradient_direction'])) . 'deg,'
. esc_attr(!empty($args['title_color2']) ? $args['title_color2'] : 'transparent') . ','
. esc_attr($args['title_color']) . ');'
. '"'
: '';
}
// Decorate 'title2' parts
$add_class2 = $add_style2 = '';
if ( strpos( $args['title'], $dual_open ) !== false ) {
// If called not from Elementor - add a border and a background image styles
if ( ! isset( $args['gradient_direction_extra'] ) ) {
$border_width = ! empty( $args['title2_border_width'] ) ? (int)$args['title2_border_width'] : '';
$border_color = ! empty( $args['title2_border_color'] ) ? trim( $args['title2_border_color'] ) : '';
$bg_image = ! empty( $args['title2_bg_image'] ) ? trx_addons_get_attachment_url( $args['title2_bg_image'] ) : '';
if ( ! empty( $args['title2_color'] ) ) {
$add_class2 .= ( ! empty( $add_class2 ) ? ' ' : '' )
. trx_addons_add_inline_css_class( 'color:' . esc_attr( $args['title2_color'] ) );
}
if ( ! empty( $border_width ) && ! empty( $border_color ) ) {
$add_class2 .= ( ! empty( $add_class2 ) ? ' ' : '' )
. 'sc_item_title_text_with_border '
. trx_addons_add_inline_css_class(
sprintf( '-webkit-text-stroke-color:%1$s; -webkit-text-stroke-width:%2$s;',
$border_color,
trx_addons_prepare_css_value( $border_width )
)
);
}
if ( ! empty( $bg_image ) ) {
$add_class2 .= ( ! empty( $add_class2 ) ? ' ' : '' )
. 'sc_item_title_text_with_bg_image '
. trx_addons_add_inline_css_class(
'-webkit-text-fill-color: transparent;'
. '-webkit-background-clip:text;'
. 'background-clip:text;'
. 'background-position:center center;'
. 'background-size:cover;'
. 'background-image:url(' . esc_url( $bg_image ) . ');'
);
}
}
// Decorate gradient
if ( $args['title_style'] == 'gradient' ) {
if ( empty( $args['gradient_fill2'] ) ) {
$args['gradient_fill2'] = 'block';
}
if ( empty( $args['gradient_direction2'] ) ) {
$args['gradient_direction2'] = 0;
}
$add_class2 .= ' trx_addons_text_gradient trx_addons_text_gradient_fill_' . esc_attr( $args['gradient_fill2'] );
$add_style2 = ! empty( $args['title2_color'] )
? ' style="'
. 'color:' . esc_attr($args['title2_color']) . ';'
. 'background:' . esc_attr($args['title2_color']) . ';'
. 'background:linear-gradient('
. max(0, min(360, (int) $args['gradient_direction2'])) . 'deg,'
. esc_attr(!empty($args['title2_color2']) ? $args['title2_color2'] : 'transparent') . ','
. esc_attr($args['title2_color']) . ');'
. '"'
: '';
}
// Replace [[ and ]] with tags
$args['title'] = str_replace(
array(
$dual_open,
$dual_close
),
array(
'</span><span class="sc_item_title_text2' . ( ! empty( $add_class2 ) ? ' ' . esc_attr( $add_class2 ) : '' ) . '"' . $add_style2 . '>',
'</span><span class="sc_item_title_text' . ( ! empty( $add_class ) ? ' ' . esc_attr( $add_class ) : '' ) . '"' . $add_style . '>'
),
$args['title']
);
}
// Wrap the title into the span
$args['title'] = '<span class="sc_item_title_text' . ( ! empty( $add_class ) ? ' ' . esc_attr( $add_class ) : '' ) . '"' . $add_style . '>'
. $args['title']
. '</span>';
// Remove empty tags
$args['title'] = str_replace(
array(
'<span class="sc_item_title_text2' . ( ! empty( $add_class2 ) ? ' ' . esc_attr( $add_class2 ) : '' ) . '"' . $add_style2 . '></span>',
'<span class="sc_item_title_text' . ( ! empty( $add_class ) ? ' ' . esc_attr( $add_class ) : '' ) . '"' . $add_style . '></span>'
),
'',
$args['title']
);
// Display the title
trx_addons_show_layout( trx_addons_prepare_macros( $args['title'] ) );
// Display the subtitle after the title
if ( ! trx_addons_is_off( $args['subtitle_align'] ) && $args['subtitle_align'] != $args['title_align'] ) {
if ( $args['subtitle_position'] != 'above' ) {
trx_addons_show_layout( $subtitle );
}
echo '</span>';
}
?></<?php echo esc_attr($title_tag); ?>><?php
}
if ( $args['subtitle_position'] !== 'above' && ( trx_addons_is_off( $args['subtitle_align'] ) || $args['subtitle_align'] == $args['title_align'] ) ) {
trx_addons_show_layout( $subtitle );
}
if ( ! empty( $args['description'] ) ) {
?><div class="<?php
echo esc_attr( apply_filters( 'trx_addons_filter_sc_item_description_class',
'sc_item_descr '
. $sc . '_descr'
. $align
. ( ! empty( $args['description_color'] )
? ' sc_item_descr_with_custom_color ' . trx_addons_add_inline_css_class( 'color: ' . esc_attr( $args['description_color'] ) . ( trx_addons_is_preview('gb') ? ' !important' : '' ) . ';' )
: ''
),
$sc,
$args
) );
?>"><?php trx_addons_show_layout( wpautop( do_shortcode( trx_addons_prepare_macros( $args['description'] ) ) ) ); ?></div><?php
}