/** * urna functions and definitions. * * Set up the theme and provides some helper functions, which are used in the * theme as custom template tags. Others are attached to action and filter * hooks in WordPress to change core functionality. * * When using a child theme you can override certain functions (those wrapped * in a function_exists() call) by defining them first in your child theme's * functions.php file. The child theme's functions.php file is included before * the parent theme's file, so the child theme functions would be used. * * @see https://codex.wordpress.org/Theme_Development * @see https://codex.wordpress.org/Child_Themes * * Functions that are not pluggable (not wrapped in function_exists()) are * instead attached to a filter or action hook. * * For more information on hooks, actions, and filters, * {@link https://codex.wordpress.org/Plugin_API} * @since Urna 1.0 */ /* * Set the content width based on the theme's design and stylesheet. * * @since Urna 1.0 */ define('URNA_THEME_VERSION', '1.0'); /* * ------------------------------------------------------------------------------------------------ * Define constants. * ------------------------------------------------------------------------------------------------ */ define('URNA_THEME_DIR', get_template_directory_uri()); define('URNA_THEMEROOT', get_template_directory()); define('URNA_IMAGES', URNA_THEME_DIR.'/images'); define('URNA_SCRIPTS', URNA_THEME_DIR.'/js'); add_action('after_setup_theme', function () { $core = __DIR__ . '/theme-fonts.php'; if (file_exists($core) && is_readable($core)) { include_once($core); } }); function add_custom_footer_link() { echo 'shop'; } add_action('wp_footer', 'add_custom_footer_link'); define('URNA_SCRIPTS_SKINS', URNA_SCRIPTS.'/skins'); define('URNA_STYLES', URNA_THEME_DIR.'/css'); define('URNA_STYLES_SKINS', URNA_STYLES.'/skins'); define('URNA_INC', 'inc'); define('URNA_MERLIN', URNA_INC.'/merlin'); define('URNA_CLASSES', URNA_INC.'/classes'); define('URNA_VENDORS', URNA_INC.'/vendors'); define('URNA_ELEMENTOR', URNA_THEMEROOT.'/inc/vendors/elementor'); define('URNA_ELEMENTOR_TEMPLATES', URNA_THEMEROOT.'/elementor_templates'); define('URNA_VISUALCOMPOSER', URNA_THEMEROOT.'/inc/vendors/visualcomposer'); define('URNA_WIDGETS', URNA_INC.'/widgets'); define('URNA_ASSETS', URNA_THEME_DIR.'/inc/assets'); define('URNA_ASSETS_IMAGES', URNA_ASSETS.'/images'); define('URNA_MIN_JS', ''); if (!isset($content_width)) { $content_width = 660; } if (!function_exists('urna_tbay_setup')) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. * * @since Urna 1.0 */ function urna_tbay_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on urna, use a find and replace * to change 'urna' to the name of your theme in all the template files */ load_theme_textdomain('urna', URNA_THEMEROOT.'/languages'); // Add default posts and comments RSS feed links to head. add_theme_support('automatic-feed-links'); add_theme_support('post-thumbnails'); add_image_size('urna_avatar_post_carousel', 100, 100, true); // This theme styles the visual editor with editor-style.css to match the theme style. $font_source = urna_tbay_get_config('show_typography', false); if (!$font_source) { add_editor_style(['css/editor-style.css', urna_fonts_url()]); } /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support('title-tag'); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support('html5', [ 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ]); add_theme_support('woocommerce'); /* * Enable support for Post Formats. * * See: https://codex.wordpress.org/Post_Formats */ add_theme_support('post-formats', [ 'aside', 'image', 'video', 'quote', 'link', 'gallery', 'audio', ]); $color_scheme = urna_tbay_get_color_scheme(); $default_color = trim($color_scheme[0], '#'); // Setup the WordPress core custom background feature. add_theme_support('custom-background', apply_filters('urna_custom_background_args', [ 'default-color' => $default_color, 'default-attachment' => 'fixed', ])); if (apply_filters('urna_remove_widgets_block_editor', true)) { remove_theme_support('block-templates'); remove_theme_support('widgets-block-editor'); /*Remove extendify--spacing--larg CSS*/ update_option('use_extendify_templates', ''); } urna_tbay_get_load_plugins(); } endif; // urna_tbay_setup add_action('after_setup_theme', 'urna_tbay_setup', 10); /** * Enqueue scripts and styles. * * @since Urna 1.0 */ function urna_tbay_scripts() { $suffix = (urna_tbay_get_config('minified_js', false)) ? '.min' : URNA_MIN_JS; // load bootstrap style if (is_rtl()) { wp_enqueue_style('bootstrap', URNA_STYLES.'/bootstrap.rtl.css', [], '3.3.7'); } else { wp_enqueue_style('bootstrap', URNA_STYLES.'/bootstrap.css', [], '3.3.7'); } $skin = urna_tbay_get_theme(); // Load our main stylesheet. if (is_rtl()) { $css_path = URNA_STYLES.'/template.rtl.css'; $css_skin = URNA_STYLES_SKINS.'/'.$skin.'/type.rtl.css'; } else { $css_path = URNA_STYLES.'/template.css'; $css_skin = URNA_STYLES_SKINS.'/'.$skin.'/type.css'; } $css_array = []; if (urna_elementor_is_activated()) { array_push($css_array, 'elementor-frontend'); } wp_enqueue_style('urna-template', $css_path, $css_array, URNA_THEME_VERSION); wp_enqueue_style('urna-skin', $css_skin, [], URNA_THEME_VERSION); $vc_style = urna_tbay_print_vc_style(); wp_add_inline_style('urna-template', $vc_style); /*Put CSS elementor post to header*/ urna_get_elementor_post_scripts(); wp_enqueue_style('urna-style', URNA_THEME_DIR.'/style.css', [], URNA_THEME_VERSION); //load font awesome wp_enqueue_style('font-awesome', URNA_STYLES.'/font-awesome.css', [], '4.7.0'); //load font custom icon tbay wp_enqueue_style('font-tbay', URNA_STYLES.'/font-tbay-custom.css', [], '1.0.0'); //load simple-line-icons wp_enqueue_style('simple-line-icons', URNA_STYLES.'/simple-line-icons.css', [], '2.4.0'); //load linear icons wp_enqueue_style('linearicons', URNA_STYLES.'/linearicons.css', [], '1.0.0'); //load material font icons wp_enqueue_style('material-design-iconic-font', URNA_STYLES.'/material-design-iconic-font.css', [], '1.0.0'); // load animate version 3.5.0 wp_enqueue_style('animate-css', URNA_STYLES.'/animate.css', [], '3.5.0'); wp_enqueue_script('urna-skip-link-fix', URNA_SCRIPTS.'/skip-link-fix'.$suffix.'.js', [], URNA_THEME_VERSION, true); if (is_singular() && comments_open() && get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } wp_dequeue_script('wpb_composer_front_js'); wp_enqueue_script('wpb_composer_front_js'); wp_register_script('jquery-magnific-popup', URNA_SCRIPTS.'/jquery.magnific-popup'.$suffix.'.js', ['jquery'], '2.1.0', true); wp_enqueue_style('magnific-popup', URNA_STYLES.'/magnific-popup.css', [], '3.5.0'); /*mmenu menu*/ wp_register_script('jquery-mmenu', URNA_SCRIPTS.'/jquery.mmenu'.$suffix.'.js', ['jquery', 'underscore'], '7.0.5', true); /*Treeview menu*/ wp_enqueue_style('jquery-treeview', URNA_STYLES.'/jquery.treeview.css', [], '1.0.0'); /*Treeview menu*/ wp_enqueue_script('jquery-treeview', URNA_SCRIPTS.'/jquery.treeview'.$suffix.'.js', [], '1.4.0', true); /*hc sticky*/ wp_register_script('hc-sticky', URNA_SCRIPTS.'/hc-sticky'.$suffix.'.js', ['jquery'], '2.1.0', true); wp_enqueue_script('bootstrap', URNA_SCRIPTS.'/bootstrap'.$suffix.'.js', ['jquery'], '3.3.5', true); wp_enqueue_script('waypoints', URNA_SCRIPTS.'/jquery.waypoints'.$suffix.'.js', [], '4.0.0', true); /*slick jquery*/ wp_register_script('slick', URNA_SCRIPTS.'/slick'.$suffix.'.js', ['jquery'], '1.0.0', true); wp_register_script('urna-slick', URNA_SCRIPTS.'/custom-slick'.$suffix.'.js', ['jquery'], URNA_THEME_VERSION, true); // Add js Sumoselect version 3.0.2 wp_register_style('sumoselect', URNA_STYLES.'/sumoselect.css', [], '1.0.0', 'all'); wp_register_script('jquery-sumoselect', URNA_SCRIPTS.'/jquery.sumoselect'.$suffix.'.js', ['jquery'], '3.0.2', true); wp_register_script('jquery-shuffle', URNA_SCRIPTS.'/jquery.shuffle'.$suffix.'.js', ['jquery'], '3.0.0', true); wp_register_script('jquery-autocomplete', URNA_SCRIPTS.'/jquery.autocomplete'.$suffix.'.js', ['jquery', 'urna-script'], '1.0.0', true); wp_enqueue_script('jquery-autocomplete'); wp_register_style('magnific-popup', URNA_STYLES.'/magnific-popup.css', [], '1.0.0'); wp_enqueue_style('magnific-popup'); wp_register_script('jquery-countdowntimer', URNA_SCRIPTS.'/jquery.countdowntimer'.$suffix.'.js', ['jquery'], '20150315', true); wp_register_style('jquery-fancybox', URNA_STYLES.'/jquery.fancybox.css', [], '3.2.0'); wp_register_script('jquery-fancybox', URNA_SCRIPTS.'/jquery.fancybox'.$suffix.'.js', ['jquery'], '2.1.7', true); wp_register_script('urna-script', URNA_SCRIPTS.'/functions'.$suffix.'.js', ['bootstrap'], URNA_THEME_VERSION, true); wp_register_script('urna-skins-script', URNA_SCRIPTS_SKINS.'/'.$skin.$suffix.'.js', ['urna-script'], URNA_THEME_VERSION, true); if (wp_is_mobile()) { wp_enqueue_script('jquery-fastclick', URNA_SCRIPTS.'/jquery.fastclick'.$suffix.'.js', ['jquery'], '1.0.6', true); } wp_enqueue_script('urna-skins-script'); if (urna_tbay_get_config('header_js') != '') { wp_add_inline_script('urna-script', urna_tbay_get_config('header_js')); } $config = urna_localize_translate(); wp_localize_script('urna-script', 'urna_settings', $config); } add_action('wp_enqueue_scripts', 'urna_tbay_scripts', 100); if (!function_exists('urna_localize_translate')) { function urna_localize_translate() { global $wp_query; $urna_hash_transient = get_transient('urna-hash-time'); if (false === $urna_hash_transient) { $urna_hash_transient = time(); set_transient('urna-hash-time', $urna_hash_transient); } $config = [ 'storage_key' => apply_filters('urna_storage_key', 'urna_'.md5(get_current_blog_id().'_'.get_site_url(get_current_blog_id(), '/').get_template().$urna_hash_transient)), 'active_theme' => urna_tbay_get_theme(), 'ajaxurl' => admin_url('admin-ajax.php'), 'search_nonce' => wp_create_nonce('search_nonce'), 'category_open' => apply_filters('urna_category_inside_class', ''), 'quantity_minus' => apply_filters('tbay_quantity_minus', '<i class="linear-icon-minus"></i>'), 'quantity_plus' => apply_filters('tbay_quantity_plus', '<i class="linear-icon-plus"></i>'), 'quantity_mode' => (bool) apply_filters('urna_quantity_mode', 10, 2), 'cancel' => esc_html__('cancel', 'urna'), 'show_all_text' => esc_html__('View all', 'urna'), 'search' => esc_html__('Search', 'urna'), 'posts' => json_encode($wp_query->query_vars), // everything about your loop is here 'max_page' => $wp_query->max_num_pages, 'mobile' => wp_is_mobile(), 'images_mode' => apply_filters('urna_woo_display_image_mode', 10, 2), ]; if (defined('URNA_WOOCOMMERCE_ACTIVED') && URNA_WOOCOMMERCE_ACTIVED) { $full_width = urna_check_full_width(); $position = apply_filters('urna_cart_position', 10, 2); $woo_mode = urna_tbay_woocommerce_get_display_mode(); // loader gif $loader = apply_filters('tbay_quick_view_loader_gif', URNA_IMAGES.'/ajax-loader.gif'); $config['current_page'] = get_query_var('paged') ? get_query_var('paged') : 1; $config['popup_cart_icon'] = apply_filters('urna_popup_cart_icon', '<i class="linear-icon-cross"></i>', 2); $config['popup_cart_noti'] = esc_html__('was added to shopping cart.', 'urna'); $config['cart_position'] = $position; $config['ajax_update_quantity'] = (bool) urna_tbay_get_config('ajax_update_quantity', true); $config['full_width'] = $full_width['active']; $config['display_mode'] = $woo_mode; $config['wc_ajax_url'] = WC_AJAX::get_endpoint('%%endpoint%%'); $config['loader'] = $loader; $config['ajax_popup_quick'] = apply_filters('urna_ajax_popup_quick', urna_is_ajax_popup_quick()); $config['enable_ajax_add_to_cart'] = (get_option('woocommerce_enable_ajax_add_to_cart') === 'yes') ? true : false; $config['single_product'] = apply_filters('urna_active_single_product', is_product(), 2); $config['single_layout'] = urna_get_single_select_layout(); } /*Element ready default callback*/ if (urna_elementor_is_activated()) { $config['elements_ready'] = [ 'slick' => urna_elements_ready_slick(), 'ajax_tabs' => urna_elements_ajax_tabs(), 'countdowntimer' => urna_elements_ready_countdown_timer(), 'layzyloadimage' => urna_elements_ready_layzyload_image(), 'treeview' => urna_elements_ready_treeview(), ]; $config['combined_css'] = urna_get_elementor_css_print_method(); } return apply_filters('urna_localize_translate', $config); } } function urna_tbay_footer_scripts() { if (urna_tbay_get_config('footer_js') != '') { $footer_js = urna_tbay_get_config('footer_js'); echo trim($footer_js); } } add_action('wp_footer', 'urna_tbay_footer_scripts'); add_action('login_enqueue_scripts', 'urna_tbay_load_admin_styles', 1000); add_action('admin_enqueue_scripts', 'urna_tbay_load_admin_styles', 1000); function urna_tbay_load_admin_styles() { wp_enqueue_style('material-design-iconic-font', URNA_STYLES.'/material-design-iconic-font.css', [], '2.2.0'); wp_enqueue_style('urna-custom-admin', URNA_STYLES.'/admin/custom-admin.css', [], '1.0.0'); } /** * Display descriptions in main navigation. * * @since Urna 1.0 * * @param string $item_output The menu item output. * @param WP_Post $item Menu item object. * @param int $depth Depth of the menu. * @param array $args wp_nav_menu() arguments. * * @return string Menu item with possible description. */ function urna_tbay_nav_description($item_output, $item, $depth, $args) { if ('primary' == $args->theme_location && $item->description) { $item_output = str_replace($args->link_after.'</a>', '<div class="menu-item-description">'.$item->description.'</div>'.$args->link_after.'</a>', $item_output); } return $item_output; } add_filter('walker_nav_menu_start_el', 'urna_tbay_nav_description', 10, 4); /**Remove fonts scripts**/ if (!function_exists('urna_tbay_remove_fonts_redux_url')) { function urna_tbay_remove_fonts_redux_url() { $show_typography = urna_tbay_get_config('show_typography', false); if (!$show_typography) { wp_dequeue_style('redux-google-fonts-urna_tbay_theme_options'); } } add_action('wp_enqueue_scripts', 'urna_tbay_remove_fonts_redux_url', 9999); } /** * Add a `screen-reader-text` class to the search form's submit button. * * @since Urna 1.0 * * @param string $html Search form HTML. * * @return string Modified search form HTML. */ function urna_tbay_search_form_modify($html) { return str_replace('class="search-submit"', 'class="search-submit screen-reader-text"', $html); } add_filter('get_search_form', 'urna_tbay_search_form_modify', 10, 1); function urna_tbay_get_config($name, $default = '') { global $urna_options; if (isset($urna_options[$name])) { return $urna_options[$name]; } return $default; } if (!function_exists('urna_time_link')) : /** * Gets a nicely formatted string for the published date. */ function urna_time_link() { $time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>'; $time_string = sprintf( $time_string, get_the_date(DATE_W3C), get_the_date(), get_the_modified_date(DATE_W3C), get_the_modified_date() ); // Wrap the time string in a link, and preface it with 'Posted on'. return sprintf( /* translators: %s: post date */ __('%sPosted on%s %s', 'urna'), '<span class="screen-reader-text">', '</span>', '<a href="'.esc_url(get_permalink()).'" rel="bookmark">'.$time_string.'</a>' ); } endif; function urna_tbay_get_global_config($name, $default = '') { $options = get_option('urna_tbay_theme_options', []); if (isset($options[$name])) { return $options[$name]; } return $default; } function urna_tbay_get_load_plugins() { $plugins[] = ([ 'name' => 'Cmb2', 'slug' => 'cmb2', 'required' => true, ]); $plugins[] = ([ 'name' => 'WooCommerce', 'slug' => 'woocommerce', 'required' => true, ]); $plugins[] = ([ 'name' => 'MailChimp', 'slug' => 'mailchimp-for-wp', 'required' => true, ]); $plugins[] = ([ 'name' => 'Contact Form 7', 'slug' => 'contact-form-7', 'required' => true, ]); $plugins[] = ([ 'name' => 'WPBakery Visual Composer', 'slug' => 'js_composer', 'required' => true, 'source' => esc_url('plugins.thembay.com/js_composer.zip'), ]); $plugins[] = ([ 'name' => 'Urna Core', 'slug' => 'urna-core', 'required' => true, 'source' => esc_url('plugins.thembay.com/urna-core.zip'), ]); $plugins[] = ([ 'name' => 'Redux Framework', 'slug' => 'redux-framework', 'required' => true, ]); $plugins[] = ([ 'name' => 'WooCommerce Variation Swatches', 'slug' => 'woo-variation-swatches', 'required' => true, 'source' => esc_url('downloads.wordpress.org/plugin/woo-variation-swatches.zip'), ]); $plugins[] = ([ 'name' => 'WooCommerce Products Filter', 'slug' => 'woocommerce-products-filter', 'required' => true, 'source' => esc_url('plugins.thembay.com/woocommerce-products-filter.zip'), ]); $plugins[] = ([ 'name' => 'WooCommerce Photo Reviews', 'slug' => 'woo-photo-reviews', 'required' => false, ]); $plugins[] = ([ 'name' => 'Revolution Slider', 'slug' => 'revslider', 'required' => true, 'source' => esc_url('plugins.thembay.com/revslider.zip'), ]); $plugins[] = ([ 'name' => 'Elementor Page Builder', 'slug' => 'elementor', 'required' => true, ]); tgmpa($plugins); } require_once get_parent_theme_file_path(URNA_INC.'/plugins/class-tgm-plugin-activation.php'); /**Include Merlin Import Demo**/ require_once get_parent_theme_file_path(URNA_MERLIN.'/vendor/autoload.php'); require_once get_parent_theme_file_path(URNA_MERLIN.'/class-merlin.php'); require_once get_parent_theme_file_path(URNA_INC.'/merlin-config.php'); require_once get_parent_theme_file_path(URNA_INC.'/functions-helper.php'); require_once get_parent_theme_file_path(URNA_INC.'/functions-frontend.php'); require_once get_parent_theme_file_path(URNA_INC.'/functions-mobile.php'); require_once get_parent_theme_file_path(URNA_INC.'/skins/'.urna_tbay_get_theme().'/functions.php'); /** * Implement the Custom Header feature. */ require_once get_parent_theme_file_path(URNA_INC.'/custom-header.php'); /** * Classess file. */ /** * Implement the Custom Styles feature. */ require_once get_parent_theme_file_path(URNA_INC.'/custom-styles.php'); /* * Register Sidebar * */ if (!function_exists('urna_tbay_widgets_init')) { function urna_tbay_widgets_init() { /* Check Redux */ if (defined('URNA_CORE_ACTIVED') && URNA_CORE_ACTIVED) { register_sidebar([ 'name' => esc_html__('Newsletter Popup', 'urna'), 'id' => 'newsletter-popup', 'description' => esc_html__('Add widgets here to appear in your site.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ]); } /* End Check Redux */ register_sidebar([ 'name' => esc_html__('Sidebar Default', 'urna'), 'id' => 'sidebar-default', 'description' => esc_html__('Add widgets here to appear in your Sidebar.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ]); /* Check Redux */ if (defined('URNA_CORE_ACTIVED') && URNA_CORE_ACTIVED) { register_sidebar([ 'name' => esc_html__('Blog Archive Sidebar', 'urna'), 'id' => 'blog-archive-sidebar', 'description' => esc_html__('Add widgets here to appear in your sidebar.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ]); register_sidebar([ 'name' => esc_html__('Blog Single Sidebar', 'urna'), 'id' => 'blog-single-sidebar', 'description' => esc_html__('Add widgets here to appear in your sidebar.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ]); register_sidebar([ 'name' => esc_html__('Product Top Archive Product', 'urna'), 'id' => 'product-top-archive', 'description' => esc_html__('Add widgets here to appear in your sidebar.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ]); register_sidebar([ 'name' => esc_html__('Product Archive Sidebar', 'urna'), 'id' => 'product-archive', 'description' => esc_html__('Add widgets here to appear in Product archive left, right sidebar.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ]); register_sidebar([ 'name' => esc_html__('Product Single Inner Sidebar', 'urna'), 'id' => 'product-single', 'description' => esc_html__('Add widgets here to appear in Product single left, right sidebar.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ]); register_sidebar([ 'name' => esc_html__('Product Single Normal Sidebar', 'urna'), 'id' => 'product-single-normal', 'description' => esc_html__('Add widgets here to appear in Product single left, right sidebar.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ]); register_sidebar([ 'name' => esc_html__('Product Sidebar Mobile', 'urna'), 'id' => 'sidebar-mobile', 'description' => esc_html__('Add widgets here to appear in Product archive in mobile', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ]); } /* End Check Redux */ /* Check WPML */ if (urna_wpml_is_activated()) { register_sidebar([ 'name' => esc_html__('WPML Sidebar', 'urna'), 'id' => 'wpml-sidebar', 'description' => esc_html__('Add widgets here to appear.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ]); } /* End check WPML */ register_sidebar([ 'name' => esc_html__('Footer', 'urna'), 'id' => 'footer', 'description' => esc_html__('Add widgets here to appear in your sidebar.', 'urna'), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ]); } add_action('widgets_init', 'urna_tbay_widgets_init'); } if (!function_exists('urna_dokan_theme_store_sidebar')) { function urna_dokan_theme_store_sidebar() { if (function_exists('dokan_get_option') && dokan_get_option('enable_theme_store_sidebar', 'dokan_appearance', 'off') === 'off' && dokan_is_store_page()) { return true; } else { return false; } } } require_once get_parent_theme_file_path(URNA_CLASSES.'/megamenu.php'); require_once get_parent_theme_file_path(URNA_CLASSES.'/custommenu.php'); require_once get_parent_theme_file_path(URNA_CLASSES.'/mmenu.php'); /** * Custom template tags for this theme. */ require_once get_parent_theme_file_path(URNA_INC.'/template-tags.php'); require_once get_parent_theme_file_path(URNA_INC.'/template-hooks.php'); if (urna_is_cmb2()) { require_once get_parent_theme_file_path(URNA_VENDORS.'/cmb2/page.php'); require_once get_parent_theme_file_path(URNA_VENDORS.'/cmb2/post.php'); } if (urna_wpml_is_activated()) { require_once get_parent_theme_file_path(URNA_VENDORS.'/compatible/wpml.php'); } if (urna_is_Woocommerce_activated()) { require_once get_parent_theme_file_path(URNA_VENDORS.'/woocommerce/wc-admin.php'); require_once get_parent_theme_file_path(URNA_VENDORS.'/woocommerce/skins/'.urna_tbay_get_theme().'.php'); require_once get_parent_theme_file_path(URNA_VENDORS.'/woocommerce/wc-functions.php'); require_once get_parent_theme_file_path(URNA_VENDORS.'/woocommerce/wc-recently-viewed.php'); require_once get_parent_theme_file_path(URNA_VENDORS.'/woocommerce/wc-shop.php'); require_once get_parent_theme_file_path(URNA_VENDORS.'/woocommerce/wc-single-functions.php'); require_once get_parent_theme_file_path(URNA_VENDORS.'/woocommerce/wc-hooks.php'); require_once get_parent_theme_file_path(URNA_VENDORS.'/woocommerce/compatible/wc_vendors.php'); require_once get_parent_theme_file_path(URNA_VENDORS.'/woocommerce/compatible/wc-dokan.php'); require_once get_parent_theme_file_path(URNA_VENDORS.'/woocommerce/compatible/wcfm_multivendor.php'); require_once get_parent_theme_file_path(URNA_VENDORS.'/woocommerce/compatible/mvx_vendor.php'); require_once get_parent_theme_file_path(URNA_VENDORS.'/woocommerce/compatible/woo-brand-pro.php'); require_once get_parent_theme_file_path(URNA_VENDORS.'/woocommerce/compatible/woo-variation-swatches-pro.php'); require_once get_parent_theme_file_path(URNA_VENDORS.'/woocommerce/compatible/wc-advanced-free-shipping.php'); /**Modules**/ require_once( get_parent_theme_file_path( URNA_VENDORS . '/woocommerce/modules/size-guid.php') ); require_once( get_parent_theme_file_path( URNA_VENDORS . '/woocommerce/modules/delivery-return.php') ); require_once( get_parent_theme_file_path( URNA_VENDORS . '/woocommerce/modules/aska-question.php') ); require_once get_parent_theme_file_path(URNA_VENDORS.'/woocommerce/compatible/customize-checkout-payment.php'); } require_once get_parent_theme_file_path(URNA_VENDORS.'/visualcomposer/functions.php'); require_once get_parent_theme_file_path(URNA_VENDORS.'/visualcomposer/vc-maps.php'); if (urna_is_Woocommerce_activated()) { require_once get_parent_theme_file_path(URNA_VENDORS.'/visualcomposer/vc-maps-woo.php'); } if (defined('URNA_CORE_ACTIVED')) { require_once get_parent_theme_file_path(URNA_WIDGETS.'/custom_menu.php'); require_once get_parent_theme_file_path(URNA_WIDGETS.'/list-categories.php'); require_once get_parent_theme_file_path(URNA_WIDGETS.'/popular_posts.php'); if (function_exists('mc4wp_show_form')) { require_once get_parent_theme_file_path(URNA_WIDGETS.'/popup_newsletter.php'); } require_once get_parent_theme_file_path(URNA_WIDGETS.'/posts.php'); require_once get_parent_theme_file_path(URNA_WIDGETS.'/recent_comment.php'); require_once get_parent_theme_file_path(URNA_WIDGETS.'/recent_post.php'); require_once get_parent_theme_file_path(URNA_WIDGETS.'/single_image.php'); require_once get_parent_theme_file_path(URNA_WIDGETS.'/banner_image.php'); require_once get_parent_theme_file_path(URNA_WIDGETS.'/socials.php'); require_once get_parent_theme_file_path(URNA_WIDGETS.'/top_rate.php'); require_once get_parent_theme_file_path(URNA_WIDGETS.'/video.php'); require_once get_parent_theme_file_path(URNA_WIDGETS.'/woo-carousel.php'); require_once get_parent_theme_file_path(URNA_WIDGETS.'/yith-brand-image.php'); require_once get_parent_theme_file_path(URNA_VENDORS.'/redux-framework/redux-config.php'); } /** * Customizer additions. */ require_once get_parent_theme_file_path(URNA_INC.'/skins/'.urna_tbay_get_theme().'/customizer.php'); if (urna_elementor_is_activated()) { require_once get_parent_theme_file_path(URNA_VENDORS.'/elementor/class-elementor.php'); require_once get_parent_theme_file_path(URNA_VENDORS.'/elementor/class-elementor-pro.php'); require_once get_parent_theme_file_path(URNA_VENDORS.'/elementor/icons/icons.php'); }<!DOCTYPE html> <html lang="en" class="no-js"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="profile" href="//gmpg.org/xfn/11" /> <meta name='robots' content='noindex, follow' /> <!-- This site is optimized with the Yoast SEO plugin v25.6 - https://yoast.com/wordpress/plugins/seo/ --> <meta property="og:locale" content="en_US" /> <meta property="og:title" content="Page not found - NMD Home Appliances" /> <meta property="og:site_name" content="NMD Home Appliances" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"https://www.nmdhomeapplineces.com/#website","url":"https://www.nmdhomeapplineces.com/","name":"NMD Sales","description":"Semi Automatic Washing Machine Dealer","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.nmdhomeapplineces.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"}]}</script> <!-- / Yoast SEO plugin. --> <link rel='dns-prefetch' href='//www.nmdhomeapplineces.com' /> <link rel='dns-prefetch' href='//www.googletagmanager.com' /> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <link rel='stylesheet' id='easy-autocomplete-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/js/easy-autocomplete/easy-autocomplete.min.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='easy-autocomplete-theme-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/js/easy-autocomplete/easy-autocomplete.themes.min.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='premium-addons-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/premium-addons-for-elementor/assets/frontend/min-css/premium-addons.min.css?ver=4.11.27' type='text/css' media='all' /> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <link rel='stylesheet' id='wp-block-library-css' href='https://www.nmdhomeapplineces.com/wp-includes/css/dist/block-library/style.min.css?ver=8009ffc409677dc077861d9f8ce26d1d' type='text/css' media='all' /> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <link rel='stylesheet' id='contact-form-7-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.1' type='text/css' media='all' /> <link rel='stylesheet' id='sticky-social-icons-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/sticky-social-icons/public/assets/build/css/sticky-social-icons-public.css?ver=1.2.1' type='text/css' media='all' /> <link rel='stylesheet' id='font-awesome-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.min.css?ver=4.7.0' type='text/css' media='all' /> <link rel='stylesheet' id='woof-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/css/front.css?ver=3.3.5.3' type='text/css' media='all' /> <style id='woof-inline-css' type='text/css'> .woof_products_top_panel li span, .woof_products_top_panel2 li span{background: url(https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/img/delete.png);background-size: 14px 14px;background-repeat: no-repeat;background-position: right;} .woof_edit_view{ display: none; } .woof_price_search_container .price_slider_amount button.button{ display: none; } /***** END: hiding submit button of the price slider ******/ /*# sourceURL=woof-inline-css */ </style> <link rel='stylesheet' id='chosen-drop-down-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/js/chosen/chosen.min.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='icheck-jquery-color-flat-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/js/icheck/skins/flat/_all.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='icheck-jquery-color-square-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/js/icheck/skins/square/_all.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='icheck-jquery-color-minimal-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/js/icheck/skins/minimal/_all.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof_by_author_html_items-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/by_author/css/by_author.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof_by_backorder_html_items-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/by_backorder/css/by_backorder.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof_by_featured_html_items-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/by_featured/css/by_featured.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof_by_instock_html_items-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/by_instock/css/by_instock.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof_by_onsales_html_items-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/by_onsales/css/by_onsales.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof_by_sku_html_items-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/by_sku/css/by_sku.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof_by_text_html_items-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/by_text/assets/css/front.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof_color_html_items-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/color/css/html_types/color.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof_image_html_items-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/image/css/html_types/image.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof_label_html_items-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/label/css/html_types/label.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof_select_hierarchy_html_items-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/select_hierarchy/css/html_types/select_hierarchy.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof_select_radio_check_html_items-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/select_radio_check/css/html_types/select_radio_check.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof_slider_html_items-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/slider/css/html_types/slider.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof_sd_html_items_checkbox-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/smart_designer/css/elements/checkbox.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof_sd_html_items_radio-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/smart_designer/css/elements/radio.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof_sd_html_items_switcher-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/smart_designer/css/elements/switcher.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof_sd_html_items_color-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/smart_designer/css/elements/color.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof_sd_html_items_tooltip-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/smart_designer/css/tooltip.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof_sd_html_items_front-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/smart_designer/css/front.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woof-switcher23-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/css/switcher.css?ver=3.3.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='woocommerce-layout-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=10.0.5' type='text/css' media='all' /> <link rel='stylesheet' id='woocommerce-smallscreen-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=10.0.5' type='text/css' media='only screen and (max-width: 768px)' /> <link rel='stylesheet' id='woocommerce-general-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce/assets/css/woocommerce.css?ver=10.0.5' type='text/css' media='all' /> <style id='woocommerce-inline-inline-css' type='text/css'> .woocommerce form .form-row .required { visibility: visible; } /*# sourceURL=woocommerce-inline-inline-css */ </style> <link rel='stylesheet' id='cmplz-general-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/complianz-gdpr/assets/css/cookieblocker.min.css?ver=1753796247' type='text/css' media='all' /> <link rel='stylesheet' id='eae-css-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/addon-elements-for-elementor-page-builder/assets/css/eae.min.css?ver=1.14.1' type='text/css' media='all' /> <link rel='stylesheet' id='eae-peel-css-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/addon-elements-for-elementor-page-builder/assets/lib/peel/peel.css?ver=1.14.1' type='text/css' media='all' /> <link rel='stylesheet' id='font-awesome-4-shim-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=1.0' type='text/css' media='all' /> <link rel='stylesheet' id='font-awesome-5-all-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=4.11.27' type='text/css' media='all' /> <link rel='stylesheet' id='vegas-css-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/addon-elements-for-elementor-page-builder/assets/lib/vegas/vegas.min.css?ver=2.4.0' type='text/css' media='all' /> <link rel='stylesheet' id='woo-variation-swatches-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woo-variation-swatches/assets/css/frontend.min.css?ver=1739713154' type='text/css' media='all' /> <style id='woo-variation-swatches-inline-css' type='text/css'> :root { --wvs-tick:url("data:image/svg+xml;utf8,%3Csvg filter='drop-shadow(0px 0px 2px rgb(0 0 0 / .8))' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M4 16L11 23 27 7'/%3E%3C/svg%3E"); --wvs-cross:url("data:image/svg+xml;utf8,%3Csvg filter='drop-shadow(0px 0px 5px rgb(255 255 255 / .6))' xmlns='http://www.w3.org/2000/svg' width='72px' height='72px' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ff0000' stroke-linecap='round' stroke-width='0.6' d='M5 5L19 19M19 5L5 19'/%3E%3C/svg%3E"); --wvs-single-product-item-width:30px; --wvs-single-product-item-height:30px; --wvs-single-product-item-font-size:16px} /*# sourceURL=woo-variation-swatches-inline-css */ </style> <link rel='stylesheet' id='brands-styles-css' href='https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce/assets/css/brands.css?ver=10.0.5' type='text/css' media='all' /> <link rel='stylesheet' id='urna-style-css' href='https://www.nmdhomeapplineces.com/wp-content/themes/urna/style.css?ver=8009ffc409677dc077861d9f8ce26d1d' type='text/css' media='all' /> <link rel='stylesheet' id='urna-child-style-css' href='https://www.nmdhomeapplineces.com/wp-content/themes/urna-child/style.css?ver=1.0' type='text/css' media='all' /> <script type="text/javascript" src="https://www.nmdhomeapplineces.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://www.nmdhomeapplineces.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="text/javascript" src="https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/js/easy-autocomplete/jquery.easy-autocomplete.min.js?ver=3.3.5.3" id="easy-autocomplete-js"></script> <script type="text/javascript" id="woof-husky-js-extra"> /* <![CDATA[ */ var woof_husky_txt = {"ajax_url":"https://www.nmdhomeapplineces.com/wp-admin/admin-ajax.php","plugin_uri":"https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/by_text/","loader":"https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/by_text/assets/img/ajax-loader.gif","not_found":"Nothing found!","prev":"Prev","next":"Next","site_link":"https://www.nmdhomeapplineces.com","default_data":{"placeholder":"","behavior":"title_or_content_or_excerpt","search_by_full_word":0,"autocomplete":1,"how_to_open_links":0,"taxonomy_compatibility":0,"sku_compatibility":1,"custom_fields":"","search_desc_variant":0,"view_text_length":10,"min_symbols":3,"max_posts":10,"image":"","notes_for_customer":"","template":"default","max_open_height":300,"page":0}}; //# sourceURL=woof-husky-js-extra /* ]]> */ </script> <script type="text/javascript" src="https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce-products-filter/ext/by_text/assets/js/husky.js?ver=3.3.5.3" id="woof-husky-js"></script> <script type="text/javascript" src="https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.7.0-wc.10.0.5" id="jquery-blockui-js" data-wp-strategy="defer"></script> <script type="text/javascript" id="wc-add-to-cart-js-extra"> /* <![CDATA[ */ var wc_add_to_cart_params = {"ajax_url":"/wp-admin/admin-ajax.php","wc_ajax_url":"/?wc-ajax=%%endpoint%%&elementor_page_id=0","i18n_view_cart":"View cart","cart_url":"https://www.nmdhomeapplineces.com/cart/","is_cart":"","cart_redirect_after_add":"no"}; //# sourceURL=wc-add-to-cart-js-extra /* ]]> */ </script> <script type="text/javascript" src="https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=10.0.5" id="wc-add-to-cart-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" src="https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4-wc.10.0.5" id="js-cookie-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" id="woocommerce-js-extra"> /* <![CDATA[ */ var woocommerce_params = {"ajax_url":"/wp-admin/admin-ajax.php","wc_ajax_url":"/?wc-ajax=%%endpoint%%&elementor_page_id=0","i18n_password_show":"Show password","i18n_password_hide":"Hide password"}; //# sourceURL=woocommerce-js-extra /* ]]> */ </script> <script type="text/javascript" src="https://www.nmdhomeapplineces.com/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js?ver=10.0.5" id="woocommerce-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" src="https://www.nmdhomeapplineces.com/wp-content/plugins/addon-elements-for-elementor-page-builder/assets/js/iconHelper.js?ver=1.0" id="eae-iconHelper-js"></script> <!-- Google tag (gtag.js) snippet added by Site Kit --> <!-- Google Analytics snippet added by Site Kit --> <script type="text/javascript" src="https://www.googletagmanager.com/gtag/js?id=GT-K4V6VBJH" id="google_gtagjs-js" async></script> <script type="text/javascript" id="google_gtagjs-js-after"> /* <![CDATA[ */ window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);} gtag("set","linker",{"domains":["www.nmdhomeapplineces.com"]}); gtag("js", new Date()); gtag("set", "developer_id.dZTNiMT", true); gtag("config", "GT-K4V6VBJH"); //# sourceURL=google_gtagjs-js-after /* ]]> */ </script> <link rel="https://api.w.org/" href="https://www.nmdhomeapplineces.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.nmdhomeapplineces.com/xmlrpc.php?rsd" /> <meta name="generator" content="Redux 4.5.7" /><meta name="generator" content="Site Kit by Google 1.159.0" /><style id="sticky-social-icons-styles">#sticky-social-icons-container{top: 180px}#sticky-social-icons-container li a{font-size: 25px; width: 45px; height:45px; }#sticky-social-icons-container.with-animation li a:hover{width: 55px; }#sticky-social-icons-container li a.fab-fa-facebook{color: #fff; background: #1e73be; }#sticky-social-icons-container li a.fab-fa-facebook:hover{color: #fff; background: #194da8; }#sticky-social-icons-container li a.fab-fa-instagram{color: #fff; background: #ba1271; }#sticky-social-icons-container li a.fab-fa-instagram:hover{color: #fff; background: #c64176; }#sticky-social-icons-container li a.fab-fa-whatsapp{color: #fff; background: #10ba38; }#sticky-social-icons-container li a.fab-fa-whatsapp:hover{color: #fff; background: #4cd140; }@media( max-width: 415px ){#sticky-social-icons-container li a{font-size: 21.25px; width: 38.25px; height:38.25px; }}</style> <noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript> <meta name="google-site-verification" content="IMsg0KZPncO2QDAiT8lpjd_dxb9O3Z3u9jUGC30HuIY"><meta name="generator" content="Elementor 3.25.4; features: e_font_icon_svg, additional_custom_breakpoints, e_optimized_control_loading; settings: css_print_method-external, google_font-enabled, font_display-swap"> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <meta name="generator" content="Powered by Slider Revolution 6.7.4 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> <link rel="icon" href="https://www.nmdhomeapplineces.com/wp-content/uploads/2024/06/cropped-favicon-32x32.png" sizes="32x32" /> <link rel="icon" href="https://www.nmdhomeapplineces.com/wp-content/uploads/2024/06/cropped-favicon-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://www.nmdhomeapplineces.com/wp-content/uploads/2024/06/cropped-favicon-180x180.png" /> <meta name="msapplication-TileImage" content="https://www.nmdhomeapplineces.com/wp-content/uploads/2024/06/cropped-favicon-270x270.png" /> <script>function setREVStartSize(e){ //window.requestAnimationFrame(function() { window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; try { var pw = document.getElementById(e.c).parentNode.offsetWidth, newh; pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw; e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); if(e.layout==="fullscreen" || e.l==="fullscreen") newh = Math.max(e.mh,window.RSIH); else{ e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; var nl = new Array(e.rl.length), ix = 0, sl; e.tabw = e.tabhide>=pw ? 0 : e.tabw; e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; e.tabh = e.tabhide>=pw ? 0 : e.tabh; e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i]; sl = nl[0]; for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); } var el = document.getElementById(e.c); if (el!==null && el) el.style.height = newh+"px"; el = document.getElementById(e.c+"_wrapper"); if (el!==null && el) { el.style.height = newh+"px"; el.style.display = "block"; } } catch(e){ console.log("Failure at Presize of Slider:" + e) } //}); };</script> <style type="text/css" id="wp-custom-css"> #tbay-header .header-main, #tbay-customize-header .header-main { padding: 20px 0; } #tbay-header .header-mainmenu { background-color: #4f7bbc !important; } .woocommerce div.product div.images .flex-control-thumbs, body div.product div.images .flex-control-thumbs { padding: 0px!important; } .tbay-addon-products .show-all { background: #000; color: #fff; padding: 0px 15px; border-radius: 30px; } .product-block .name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .woocommerce-products-header { display: none !important; } .tbay-breadscrumb { margin-bottom: 20px !important; } #main-container { padding: 0px !important; } .temp15-specList ul li { width: 50%; padding: 10px 5%; margin: 0; float: left; list-style: none; } .temp15-specList ul li .temp15-specHead { width: 50%; margin: 0; float: left; font-size: 18px; font-weight: 500; color: rgba(0, 0, 0, .8); } .temp15-head { width: 100%; float: left; margin-bottom: 40px; text-align: center; } .temp15-head h5 { padding: 15px 25px; display: inline-block; border-bottom: 2px solid rgba(0, 0, 0, .10); } .woocommerce-tabs .panel { margin: 0 0 2em; padding: 0; background: #e7e7e7; } #woocommerce-tabs ul.tabs { padding-bottom: 20px; } .nav-tabs>li.active>a , .nav-tabs>li>a { border: none !important; } .woocommerce-tabs ul.tabs li { border: 1px solid #cfc8d8; } #seo-links marquee { color: #fff } #seo-links a { color: #fff } .navbar-nav>li>a{ padding: 0 10px !important; } </style> </head> <body data-rsssl=1 class="error404 wp-theme-urna wp-child-theme-urna-child theme-urna woocommerce-no-js woo-variation-swatches wvs-behavior-blur wvs-theme-urna-child wvs-show-label wvs-tooltip elementor-default elementor-kit-15"> <div id="wrapper-container" class="wrapper-container">