PluginProbe
Elementor Website Builder – more than just a page builder / 3.2.5
Elementor Website Builder – more than just a page builder v3.2.5
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
elementor / core / common / modules / finder / template.php

template.php in Elementor Website Builder – more than just a page builder 3.2.5, at core/common/modules/finder/template.php

48 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Elementor\Modules\Finder;
4
5 if ( ! defined( 'ABSPATH' ) ) {
6 exit; // Exit if accessed directly
7 }
8
9 ?>
10 <script type="text/template" id="tmpl-elementor-finder">
11 <div id="elementor-finder__search">
12 <i class="eicon-search"></i>
13 <input id="elementor-finder__search__input" placeholder="<?php echo __( 'Type to find anything in Elementor', 'elementor' ); ?>">
14 </div>
15 <div id="elementor-finder__content"></div>
16 </script>
17
18 <script type="text/template" id="tmpl-elementor-finder-results-container">
19 <div id="elementor-finder__no-results"><?php echo __( 'No Results Found', 'elementor' ); ?></div>
20 <div id="elementor-finder__results"></div>
21 </script>
22
23 <script type="text/template" id="tmpl-elementor-finder__results__category">
24 <div class="elementor-finder__results__category__title">{{{ title }}}</div>
25 <div class="elementor-finder__results__category__items"></div>
26 </script>
27
28 <script type="text/template" id="tmpl-elementor-finder__results__item">
29 <a href="{{ url }}" class="elementor-finder__results__item__link">
30 <div class="elementor-finder__results__item__icon">
31 <i class="eicon-{{{ icon }}}"></i>
32 </div>
33 <div class="elementor-finder__results__item__title">{{{ title }}}</div>
34 <# if ( description ) { #>
35 <div class="elementor-finder__results__item__description">- {{{ description }}}</div>
36 <# } #>
37 </a>
38 <# if ( actions.length ) { #>
39 <div class="elementor-finder__results__item__actions">
40 <# jQuery.each( actions, function() { #>
41 <a class="elementor-finder__results__item__action elementor-finder__results__item__action--{{ this.name }}" href="{{ this.url }}" target="_blank">
42 <i class="eicon-{{{ this.icon }}}"></i>
43 </a>
44 <# } ); #>
45 </div>
46 <# } #>
47 </script>
48