📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-26 12:08:53
📂
/
/
home
/
pallabnv
/
public_html
/
wp-content__3bb9dea
/
themes
/
berich
/
elements
/
templates
/
pxl_icon
✏️
Editing: layout-1.php
<?php $is_new = \Elementor\Icons_Manager::is_migration_allowed(); if(isset($settings['icons']) && !empty($settings['icons']) && count($settings['icons'])): ?> <div class="pxl-icon-list pxl-icon1 <?php echo esc_attr($settings['pxl_animate'].' '.$settings['icon_arrange']); ?>" data-wow-delay="<?php echo esc_attr($settings['pxl_animate_delay']); ?>ms"> <?php foreach ($settings['icons'] as $key => $value): $label = isset($value['label']) ? $value['label'] : ''; $label_position = isset($value['label_position']) ? $value['label_position'] : ''; $icon_key = $widget->get_repeater_setting_key( 'pxl_icon', 'icons', $key ); $widget->add_render_attribute( $icon_key, [ 'class' => $value['pxl_icon'], 'aria-hidden' => 'true', ] ); $link_key = $widget->get_repeater_setting_key( 'icon_link', 'value', $key ); if ( ! empty( $value['icon_link']['url'] ) ) { $widget->add_render_attribute( $link_key, 'href', $value['icon_link']['url'] ); if ( $value['icon_link']['is_external'] ) { $widget->add_render_attribute( $link_key, 'target', '_blank' ); } if ( $value['icon_link']['nofollow'] ) { $widget->add_render_attribute( $link_key, 'rel', 'nofollow' ); } } $link_attributes = $widget->get_render_attribute_string( $link_key ); ?> <?php if ( ! empty( $value['pxl_icon'] ) ) : ?> <a class="elementor-repeater-item-<?php echo esc_attr($value['_id']); ?> <?php echo esc_attr($label_position); ?>" <?php echo implode( ' ', [ $link_attributes ] ); ?>> <?php if ( $is_new ): \Elementor\Icons_Manager::render_icon( $value['pxl_icon'], [ 'aria-hidden' => 'true' ] ); elseif(!empty($value['pxl_icon'])): ?> <i class="<?php echo esc_attr( $value['pxl_icon'] ); ?>" aria-hidden="true"></i> <?php endif; ?> <?php if(!empty($label)) : ?> <span><?php echo esc_attr($label); ?></span> <?php endif; ?> </a> <?php endif; ?> <?php endforeach; ?> </div> <?php endif; ?>
💾 Save Changes
❌ Cancel