📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-26 13:57:17
📂
/
/
home
/
pallabnv
/
public_html
/
wp-content__3bb9dea
/
themes
/
berich
/
elements
/
templates
/
pxl_team_carousel
✏️
Editing: layout-1.php
<?php $col_xs = $widget->get_setting('col_xs', ''); $col_sm = $widget->get_setting('col_sm', ''); $col_md = $widget->get_setting('col_md', ''); $col_lg = $widget->get_setting('col_lg', ''); $col_xl = $widget->get_setting('col_xl', ''); $col_xxl = $widget->get_setting('col_xxl', ''); if($col_xxl == 'inherit') { $col_xxl = $col_xl; } $slides_to_scroll = $widget->get_setting('slides_to_scroll'); $arrows = $widget->get_setting('arrows', false); $pagination = $widget->get_setting('pagination', false); $pagination_type = $widget->get_setting('pagination_type', 'bullets'); $pause_on_hover = $widget->get_setting('pause_on_hover', false); $autoplay = $widget->get_setting('autoplay', false); $autoplay_speed = $widget->get_setting('autoplay_speed', 5000); $infinite = $widget->get_setting('infinite', false); $speed = $widget->get_setting('speed', 500); $drap = $widget->get_setting('drap', false); $opts = [ 'slide_direction' => 'horizontal', 'slide_percolumn' => 1, 'slide_mode' => 'slide', 'slides_to_show' => (int)$col_xl, 'slides_to_show_xxl' => (int)$col_xxl, 'slides_to_show_lg' => (int)$col_lg, 'slides_to_show_md' => (int)$col_md, 'slides_to_show_sm' => (int)$col_sm, 'slides_to_show_xs' => (int)$col_xs, 'slides_to_scroll' => (int)$slides_to_scroll, 'arrow' => (bool)$arrows, 'pagination' => (bool)$pagination, 'pagination_type' => $pagination_type, 'autoplay' => (bool)$autoplay, 'pause_on_hover' => (bool)$pause_on_hover, 'pause_on_interaction' => true, 'delay' => (int)$autoplay_speed, 'loop' => (bool)$infinite, 'speed' => (int)$speed ]; $widget->add_render_attribute( 'carousel', [ 'class' => 'pxl-swiper-container', 'dir' => is_rtl() ? 'rtl' : 'ltr', 'data-settings' => wp_json_encode($opts) ]); if ( ! empty( $settings['wg_btn_link']['url'] ) ) { $widget->add_render_attribute( 'button', 'href', $settings['wg_btn_link']['url'] ); if ( $settings['wg_btn_link']['is_external'] ) { $widget->add_render_attribute( 'button', 'target', '_blank' ); } if ( $settings['wg_btn_link']['nofollow'] ) { $widget->add_render_attribute( 'button', 'rel', 'nofollow' ); } } ?> <?php if(isset($settings['team']) && !empty($settings['team']) && count($settings['team'])): $image_size = !empty($settings['img_size']) ? $settings['img_size'] : 'full'; ?> <div class="pxl-swiper-slider pxl-team pxl-team-carousel1 pxl-team-layout1" <?php if($drap !== false) : ?>data-cursor-drap="<?php echo esc_html__('DRAG', 'berich'); ?>"<?php endif; ?>> <div class="pxl-carousel-inner"> <div <?php pxl_print_html($widget->get_render_attribute_string( 'carousel' )); ?>> <div class="pxl-swiper-wrapper"> <?php foreach ($settings['team'] as $key => $value): $title = isset($value['title']) ? $value['title'] : ''; $position = isset($value['position']) ? $value['position'] : ''; $image = isset($value['image']) ? $value['image'] : ''; $social = isset($value['social']) ? $value['social'] : ''; $link_key = $widget->get_repeater_setting_key( 'item_link', 'value', $key ); if ( ! empty( $value['item_link']['url'] ) ) { $widget->add_render_attribute( $link_key, 'href', $value['item_link']['url'] ); if ( $value['item_link']['is_external'] ) { $widget->add_render_attribute( $link_key, 'target', '_blank' ); } if ( $value['item_link']['nofollow'] ) { $widget->add_render_attribute( $link_key, 'rel', 'nofollow' ); } } $link_attributes = $widget->get_render_attribute_string( $link_key ); ?> <?php if($key == 0) : ?> <?php if(!empty($settings['wg_sub_title']) || !empty($settings['wg_title']) || !empty($settings['wg_desc'])) : ?> <div class="pxl-swiper-slide"> <div class="pxl-item--inner pxl-item--first <?php echo esc_attr($settings['pxl_animate']); ?>"> <?php if(!empty($image['id'])) { $img = pxl_get_image_by_size( array( 'attach_id' => $image['id'], 'thumb_size' => $image_size, 'class' => 'no-lazyload', )); $thumbnail = $img['thumbnail']; ?> <div class="pxl-item--image"> <?php echo wp_kses_post($thumbnail); ?> </div> <?php } ?> <div class="pxl-item--content"> <div class="pxl-item--top"> <div class="wg-sub-title pxl-empty"><?php echo esc_attr($settings['wg_sub_title']); ?></div> <h5 class="wg-title pxl-empty"><?php echo esc_attr($settings['wg_title']); ?></h5> <div class="wg-desc pxl-empty"><?php echo esc_attr($settings['wg_desc']); ?></div> </div> <?php if(!empty($settings['wg_btn_text'])) : ?> <div class="wg-button"> <a <?php pxl_print_html($widget->get_render_attribute_string( 'button' )); ?>><?php echo esc_attr($settings['wg_btn_text']); ?></a> </div> <?php endif; ?> </div> </div> </div> <?php endif; ?> <?php endif; ?> <div class="pxl-swiper-slide"> <div class="pxl-item--inner <?php echo esc_attr($settings['pxl_animate']); ?>" data-wow-delay="<?php echo esc_attr($settings['pxl_animate_delay']); ?>ms"> <?php if(!empty($image['id'])) { $img = pxl_get_image_by_size( array( 'attach_id' => $image['id'], 'thumb_size' => $image_size, 'class' => 'no-lazyload', )); $thumbnail = $img['thumbnail']; ?> <div class="pxl-item--image"> <?php if ( ! empty( $value['item_link']['url'] ) ) { ?><a <?php echo implode( ' ', [ $link_attributes ] ); ?>><?php } ?> <?php echo wp_kses_post($thumbnail); ?> <?php if ( ! empty( $value['item_link']['url'] ) ) { ?></a><?php } ?> </div> <div class="pxl-item--bottom"> <?php if(!empty($social)): $team_social = json_decode($social, true); ?> <div class="pxl-item--social"> <div class="pxl-social--inner"> <?php foreach ($team_social as $value): ?> <a href="<?php echo esc_url($value['url']); ?>" target="_blank"><i class="<?php echo esc_attr($value['icon']); ?>"></i></a> <?php endforeach; ?> </div> </div> <?php endif; ?> <div class="pxl-item--holder"> <div class="pxl-holder--inner"> <h3 class="pxl-item--title"><?php echo pxl_print_html($title); ?></h3> <div class="pxl-item--position"><?php echo pxl_print_html($position); ?></div> </div> </div> </div> <?php } ?> </div> </div> <?php endforeach; ?> </div> </div> <?php if($pagination !== false): ?> <div class="pxl-swiper-dots style-1"></div> <?php endif; ?> <?php if($arrows !== false): ?> <div class="pxl-swiper-arrow-wrap style-1"> <div class="pxl-swiper-arrow pxl-swiper-arrow-prev"><i class="caseicon-angle-arrow-left rtl-icon"></i></div> <div class="pxl-swiper-arrow pxl-swiper-arrow-next"><i class="caseicon-angle-arrow-right rtl-icon"></i></div> </div> <?php endif; ?> </div> </div> <?php endif; ?>
💾 Save Changes
❌ Cancel