| 1 |
<script type="text/template" id="learn-press-modal-search-items"> |
| 2 |
<div id="modal-search-items" class="learn-press-modal"> |
| 3 |
<div class="modal-overlay"> |
| 4 |
|
| 5 |
</div> |
| 6 |
<div class="modal-wrapper"> |
| 7 |
<div class="modal-container"> |
| 8 |
<header><?php echo wp_kses_post( $this->_options['title'] ); ?></header> |
| 9 |
<article> |
| 10 |
<input type="text" name="search" value="" placeholder="<?php esc_html_e( 'Search items', 'learnpress' ); ?>" autocomplete="off"/> |
| 11 |
<ul class="search-results"></ul> |
| 12 |
</article> |
| 13 |
<footer> |
| 14 |
<div class="search-nav"> |
| 15 |
</div> |
| 16 |
<button class="button close"><?php echo wp_kses_post( $this->_options['close_button'] ); ?></button> |
| 17 |
<button class="button button-primary add" style="display:none"><?php echo wp_kses_post( $this->_options['add_button'] ); ?></button> |
| 18 |
</footer> |
| 19 |
</div> |
| 20 |
</div> |
| 21 |
</div> |
| 22 |
</script> |
| 23 |
<?php |
| 24 |
|
| 25 |
?> |
| 26 |
<div id="container-modal-search-items" style="position: relative;z-index: 10000;"> |
| 27 |
</div> |
| 28 |
|
| 29 |
|
| 30 |
|
| 31 |
|