Fix File
•
/
home
/
sportsfe...
/
httpdocs
/
wp-conte...
/
plugins
/
themify-...
/
template...
•
File:
template-slider-image.php
•
Content:
<?php /** * Template Slider Image * * This template can be overridden by copying it to your child_theme_folder/themify-builder/template-slider-image.php. * * Access original fields: $args['settings'] * @author Themify */ defined( 'ABSPATH' ) || exit; $settings=$args['settings']; if (!empty($settings['img_content_slider'])): $image_w = $settings['img_w_slider']; $image_h = $settings['img_h_slider']; $image_size = $settings['image_size_slider'] !== '' ? $settings['image_size_slider'] : themify_builder_get('setting-global_feature_size', 'image_global_size_field'); $param_image = array('w' => $image_w, 'h' => $image_h,'is_slider'=>true,'image_size'=>$image_size); $total_items = count( $settings['img_content_slider'] ); $limit=$settings['visible_opt_slider']; foreach ($settings['img_content_slider'] as $index => $content): ?> <?php $image_title = isset($content['img_title_slider']) ? trim($content['img_title_slider']) : ''; $isAlt=false; $attr = ''; if (isset($content['img_link_params'])) { $attr = $content['img_link_params'] === 'lightbox' ? ' data-rel="' . $args['module_ID'] . '" class="themify_lightbox"' : ($content['img_link_params'] === 'newtab' ? ' target="_blank" rel="noopener"' : ''); } ?> <?php if ( $index % $settings['items_per_slide'] === 0 ) : ?><div class="tf_swiper-slide"<?php if($index>=$limit):?> style="content-visibility:hidden"<?php endif;?>><?php endif; ?> <div class="slide-inner-wrap"<?php if ($settings['margin'] !== ''): ?> style="<?php echo $settings['margin']; ?>"<?php endif; ?>> <?php if ( ! empty( $content['img_url_slider'] ) ) : ?> <div class="tf_rel tf_lazy slide-image"> <?php if ( $image_title==='' ) { $image_title = Themify_Builder_Model::get_alt_by_url( $content['img_url_slider'] ); $isAlt=true; } $param_image['src'] = $content['img_url_slider']; $param_image['alt'] = $image_title; $image = themify_get_image($param_image); ?> <?php if (!empty($content['img_link_slider'])): ?> <a href="<?php echo esc_url(trim($content['img_link_slider'])); ?>" <?php echo $attr; ?>> <?php echo $image; ?> </a> <?php else: ?> <?php echo $image; ?> <?php endif; ?> </div> <?php endif; ?> <?php if (($isAlt===false && $image_title !== '') || isset($content['img_caption_slider'])): ?> <div class="slide-content tb_text_wrap"> <?php if ($isAlt===false && $image_title !== ''): ?> <?php $title_tag = !empty($content['img_title_tag']) ? esc_attr( $content['img_title_tag'] ) : 'h3'; ?> <<?php echo $title_tag;?> class="slide-title"> <?php if (!empty($content['img_link_slider'])): ?> <a href="<?php echo esc_url($content['img_link_slider']); ?>"<?php echo $attr; ?>><?php echo wp_kses_post($image_title); ?></a> <?php else: ?> <?php echo $image_title; ?> <?php endif; ?> </<?php echo $title_tag;?>> <?php endif; ?> <?php if (isset($content['img_caption_slider'])) :?> <div><?php echo apply_filters('themify_builder_module_content', $content['img_caption_slider']);?></div> <?php endif; ?> </div> <?php endif; ?> </div> <?php if ( ( $index + 1 ) % $settings['items_per_slide'] === 0 || ( $index + 1 ) === $total_items ) : ?></div><?php endif; ?> <?php endforeach; ?> <?php endif;
•
Search:
•
Replace:
Function
Edit by line
Download
Information
Rename
Copy
Move
Delete
Chmod
List