PluginProbe
ShopEngine Elementor WooCommerce Builder Addon – All in One WooCommerce Solution with eCommerce Templates & Woo Widgets / 4.7.0
ShopEngine Elementor WooCommerce Builder Addon – All in One WooCommerce Solution with eCommerce Templates & Woo Widgets v4.7.0
4.9.5 4.9.4 4.9.3 4.9.2 4.9.1 4.9.0 2.0.0 2.1.0 2.2.0 2.2.1 2.2.2 2.3.0 2.4.0 2.5.0 2.5.1 3.0.0 3.1.0 3.1.1 4.0.0 4.0.1 4.1.0 4.1.1 4.2.0 4.2.1 4.3.0 All 85 releases
shopengine / widgets / breadcrumbs / screens / default.php
default.php
22 lines 757 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php defined('ABSPATH') || exit; ?>
2
3 <div class="shopengine-breadcrumbs">
4
5 <?php
6 $iconClass = isset($settings['shopengine_breadcrumbs_icon']['value']) && !empty($settings['shopengine_breadcrumbs_icon']['value']) ? $settings['shopengine_breadcrumbs_icon']['value'] : 'fas fa-arrow-right';
7
8 \ShopEngine\Widgets\Widget_Helper::instance()->wc_breadcrumb_default_filter($iconClass);
9
10 \ShopEngine\Widgets\Widget_Helper::instance()->wc_template_filter_by_match('woocommerce/global/breadcrumb.php', 'templates/global/breadcrumb.php');
11
12 $args = [
13 'delimiter' => '<i class="' . $iconClass . '" aria-hidden="true"></i>',
14 'wrap_before' => '<nav class="woocommerce-breadcrumb">',
15 'wrap_after' => '</nav>',
16 ];
17
18 woocommerce_breadcrumb($args);
19 ?>
20
21 </div>
22