X7ROOT File Manager
Current Path:
/home/notabjze/shop.houreglass.com/wp-content/themes/elessi-theme
home
/
notabjze
/
shop.houreglass.com
/
wp-content
/
themes
/
elessi-theme
/
ðŸ“
..
📄
404.php
(1.24 KB)
📄
README.txt
(607 B)
ðŸ“
admin
📄
archive.php
(5.82 KB)
ðŸ“
assets
📄
comments.php
(2 KB)
📄
content-page.php
(499 B)
📄
content-single.php
(2.88 KB)
📄
content.php
(2.91 KB)
ðŸ“
cores
ðŸ“
dokan
📄
favicon.ico
(1.12 KB)
📄
favicon.png
(1.26 KB)
📄
footer-modern.php
(217 B)
📄
footer.php
(297 B)
ðŸ“
footers
📄
functions.php
(4.37 KB)
📄
header-modern.php
(1013 B)
📄
header.php
(1.27 KB)
ðŸ“
headers
📄
image.php
(7.14 KB)
ðŸ“
includes
📄
index.php
(2.36 KB)
ðŸ“
languages
📄
no-results.php
(1.2 KB)
ðŸ“
options
📄
page-blank.php
(300 B)
📄
page-checkout.php
(5.57 KB)
📄
page-left-sidebar.php
(1.22 KB)
📄
page-my-account.php
(2.01 KB)
📄
page-right-sidebar.php
(1.24 KB)
📄
page-shopping-cart.php
(4.02 KB)
📄
page-view-compare.php
(751 B)
📄
page-visual-composer.php
(283 B)
📄
page.php
(311 B)
📄
screenshot.jpg
(111.75 KB)
📄
search.php
(2.92 KB)
📄
searchform.php
(4.42 KB)
📄
sidebar.php
(276 B)
📄
single-portfolio.php
(1.28 KB)
📄
single.php
(2.27 KB)
📄
style-elementor.css
(4.35 KB)
📄
style-rtl.css
(88.48 KB)
📄
style.css
(424.95 KB)
📄
update.txt
(44.76 KB)
ðŸ“
vc_templates
ðŸ“
widgets
ðŸ“
woocommerce
📄
wpbakery-frontend-editor.css
(73 B)
Editing: searchform.php
<?php /** * The template for displaying search forms in nasatheme * * @package nasatheme */ global $nasa_opt, $nasa_search_form_id; $_id = isset($nasa_search_form_id) ? $nasa_search_form_id : 1; $GLOBALS['nasa_search_form_id'] = $_id + 1; $mobile_search = !isset($args['mobile']) || !$args['mobile'] ? false : true; /** * Search Form - Desktop */ if (!$mobile_search) : $class_input = 'search-field search-input'; $place_holder = esc_attr__("Start typing ...", 'elessi-theme'); $hotkeys = ''; $class_wrap = 'search-wrapper nasa-search-form-container'; $form_wrap = 'nasa-search-form'; $post_type = apply_filters('nasa_search_post_type', 'post'); if ($post_type === 'product') : $class_input .= ' live-search-input'; $form_wrap = 'nasa-ajax-search-form'; $class_wrap = 'search-wrapper nasa-ajax-search-form-container'; $class_wrap .= isset($nasa_opt['search_layout']) ? ' ' . $nasa_opt['search_layout'] : ''; $place_holder = esc_attr__("I'm shopping for ...", 'elessi-theme'); if (isset($nasa_opt['hotkeys_search']) && trim($nasa_opt['hotkeys_search']) !== '') : $hotkeys = ' data-suggestions="' . esc_attr($nasa_opt['hotkeys_search']) . '"'; endif; endif; $has_post_type = apply_filters('nasa_searh_form_has_post_type', (bool) $post_type); ?> <div class="<?php echo esc_attr($class_wrap); ?>"> <form role="search" method="get" class="<?php echo esc_attr($form_wrap); ?>" action="<?php echo esc_url(home_url('/')); ?>"> <label for="nasa-input-<?php echo esc_attr($_id); ?>" class="hidden-tag"> <?php esc_html_e('Search here', 'elessi-theme'); ?> </label> <input type="text" name="s" id="nasa-input-<?php echo esc_attr($_id); ?>" class="<?php echo esc_attr($class_input); ?>" value="<?php echo get_search_query(); ?>" placeholder="<?php echo $place_holder; ?>"<?php echo $hotkeys;?> /> <span class="nasa-icon-submit-page"> <button class="nasa-submit-search hidden-tag"> <?php esc_attr_e('Search', 'elessi-theme'); ?> </button> </span> <?php if ($has_post_type) : ?> <input type="hidden" name="post_type" value="<?php echo esc_attr($post_type); ?>" /> <?php endif; ?> </form> <a href="javascript:void(0);" title="<?php esc_attr_e('Close search', 'elessi-theme'); ?>" class="nasa-close-search nasa-stclose" rel="nofollow"></a> </div> <?php /** * Search Form - Mobile */ else : $class_input = 'search-field search-input force-radius-5'; $place_holder = esc_attr__("Start typing ...", 'elessi-theme'); $class_wrap = 'nasa-search-form'; $post_type = apply_filters('nasa_mobile_search_post_type', 'product'); if ($post_type === 'product') : $class_input .= ' live-search-input'; $class_wrap = 'nasa-ajax-search-form'; $place_holder = esc_attr__("I'm shopping for ...", 'elessi-theme'); endif; $has_post_type = apply_filters('nasa_searh_form_has_post_type', (bool) $post_type); ?> <div class="search-wrapper <?php echo esc_attr($class_wrap); ?>-container nasa-flex"> <form method="get" class="<?php echo esc_attr($class_wrap); ?> nasa-transition" action="<?php echo esc_url(home_url('/')); ?>"> <label for="nasa-input-mobile-search" class="label-search hidden-tag text-left fs-17"> <?php esc_html_e('Search', 'elessi-theme'); ?> </label> <input id="nasa-input-mobile-search" type="text" class="<?php echo esc_attr($class_input); ?>" value="<?php echo get_search_query();?>" name="s" placeholder="<?php echo $place_holder; ?>" /> <div class="nasa-vitual-hidden"> <?php if ($has_post_type) : ?> <input type="submit" name="post_type" value="<?php echo esc_attr($post_type); ?>" /> <?php else: ?> <input type="submit" name="submit" value="<?php esc_attr_e('search', 'elessi-theme'); ?>" /> <?php endif; ?> </div> </form> <a href="javascript:void(0);" title="<?php esc_attr_e('Close search', 'elessi-theme'); ?>" class="nasa-close-search-mobile margin-left-10 rtl-margin-left-0 rtl-margin-right-10 nasa-stclose" rel="nofollow"></a> </div> <?php endif;
Upload File
Create Folder