Woocommerce How To Edit Shop Title Btag

WooCommerce: How to Edit Your Shop Title (`` Tag) for Better SEO</h3> <p><strong>Introduction</strong></p> <p>Your WooCommerce shop’s title tag, represented by the `<title>` tag in HTML, is a crucial element for both user experience and Search Engine Optimization (SEO). It’s the first thing people see in search engine results pages (SERPs) and browser tabs, influencing their decision to click. A well-crafted shop title can dramatically improve your site’s visibility and attract more potential customers. This article will guide you through various methods to easily edit your WooCommerce shop title tag and boost your online presence. We’ll cover everything from simple settings within WordPress to more advanced code-based approaches, allowing you to tailor your shop’s title to best suit your brand and target audience.</p> <p><strong>Main Part: Editing Your WooCommerce Shop Title Tag</strong></p> <p>There are several ways to modify the title tag of your WooCommerce shop page. The method you choose will depend on your technical comfort level and the complexity of changes you need to make.</p> <h4>1. Using the WordPress Customizer</h4> <p>This is the simplest and most user-friendly method. It allows you to change the default WordPress site title that often serves as the base for your WooCommerce shop title.</p> <ul> <ul> <li><strong>Steps:</strong></li> <li>Go to your WordPress dashboard.</li> <li>Navigate to <strong>Appearance > Customize</strong>.</li> <li>Click on <strong>Site Identity</strong>.</li> <li>In the “Site Title” field, enter your desired shop title. <strong>This will likely be the main part of your shop title on other pages, too.</strong></li> <li>You can also add a tagline, which might appear in the title depending on your theme’s settings and how you configure your SEO plugin.</li> <li>Click <strong>Publish</strong> to save your changes.</li> </ul> <p><strong>Note:</strong> This method changes the overall site title. You might need an SEO plugin (covered below) to further refine the WooCommerce shop page title specifically.</p> <h4>2. Using an SEO Plugin (Recommended)</h4> <p>SEO plugins like Yoast SEO, Rank Math, or All in One SEO Pack are highly recommended. They provide granular control over individual page titles and meta descriptions, allowing you to optimize your WooCommerce shop page effectively.</p> <ul> <li><strong>Why Use an SEO Plugin?</strong></li> <li>They allow you to create <strong>unique and descriptive title tags</strong> for each page, including your shop page.</li> <li>You can optimize for specific keywords.</li> <li>They provide suggestions and analysis to improve your SEO.</li> <li>They allow you to easily manage meta descriptions, which are also crucial for SEO.</li> </ul> <ul> <li><strong>Example using Yoast SEO:</strong></li> <li>Install and activate Yoast SEO.</li> <li>Navigate to the page you want to edit (your WooCommerce shop page). This is usually located at `yourdomain.com/shop`.</li> <li>Scroll down to the Yoast SEO meta box.</li> <li>In the “SEO title” field, enter your desired shop title. <strong>This is the primary way to control the `<title>` tag.</strong></li> <li>Adjust the “Slug” field if necessary.</li> <li>Click <strong>Update</strong> to save your changes.</li> </ul> <p><strong>Tip:</strong> Consider the following when crafting your title tag:</p> <ul> <li><strong>Include relevant keywords</strong>: Use keywords your target audience is searching for.</li> <li><strong>Keep it concise</strong>: Aim for under 60 characters to avoid truncation in SERPs.</li> <li><strong>Make it compelling</strong>: Encourage clicks with persuasive language.</li> <li><strong>Brand your title</strong>: Include your brand name for increased recognition.</li> </ul> <h4>3. Editing the Theme’s `functions.php` File (Advanced)</h4> <p>This method requires editing your theme’s `functions.php` file. <strong>This is more technical and requires caution. Back up your `functions.php` file before making any changes.</strong></p> <ul> <li><strong>How to Edit `functions.php`:</strong></li> <li>Access your WordPress installation via FTP or the File Manager in your hosting control panel.</li> <li>Navigate to the theme directory: `wp-content/themes/your-theme-name/`.</li> <li>Find the `functions.php` file and edit it.</li> <li>Add the following code snippet to change the shop title:</li> </ul> <pre class="language-php"> function change_woocommerce_shop_title( $title ) { if ( is_shop() ) { $title = 'Your Awesome WooCommerce Shop'; // Replace with your desired title } return $title; } add_filter( 'get_the_title', 'change_woocommerce_shop_title' ); </pre> <p>function change_woocommerce_page_title( $title ) {</p> <p>if ( is_shop() ) {</p> <p>$title = ‘Your Awesome WooCommerce Shop’;</p> <p>}</p> <p>return $title;</p> <p>}</p> <p>add_filter( ‘woocommerce_page_title’, ‘change_woocommerce_page_title’);</p> <ul> <li>Replace `”Your Awesome WooCommerce Shop”` with your desired shop title.</li> <li>Save the `functions.php` file.</li> <li>Clear your website cache if you are using a caching plugin.</li> </ul> <ul> <li><strong>Explanation:</strong></li> </ul> <ul> <li>The `is_shop()` function checks if the current page is the WooCommerce shop page.</li> <li>The `add_filter()` functions hook into the appropriate WordPress filter to modify the title. We use `get_the_title` for general title output and `woocommerce_page_title` to override any potential WooCommerce-specific settings.</li> <li>The `$title` variable is replaced with your desired shop title.</li> </ul> <p><strong>Important Notes About Using `functions.php`:</strong></p> <ul> <li><strong>Child Theme:</strong> It’s <strong>highly recommended</strong> to use a child theme when editing `functions.php`. This prevents your changes from being overwritten when the parent theme is updated.</li> <li><strong>Syntax Errors:</strong> A single syntax error in `functions.php` can break your entire website. Double-check your code before saving.</li> <li><strong>Alternative Hooks:</strong> Depending on your theme, you might need to use a different filter hook. Consult your theme’s documentation for specific instructions.</li> </ul> <h4>4. Editing Templates (Most Advanced)</h4> <p>This involves directly modifying the template files responsible for displaying the shop page. This is the most advanced method and requires a good understanding of WordPress theming and WooCommerce templates.</p> <ul> <li><strong>Why this is complicated:</strong></li> <li>WooCommerce templates are structured and require specific knowledge to modify correctly.</li> <li>Theme updates can override your changes if you don’t follow proper WooCommerce templating practices.</li> <li>Direct template editing can be prone to errors.</li> </ul> <ul> <li><strong>How to do it (General Outline):</strong></li> </ul> <p>1. <strong>Copy the Template:</strong> Copy the relevant template file (usually `archive-product.php` from the WooCommerce template folder) to your child theme directory, maintaining the original folder structure.</p> <p>2. <strong>Edit the Title Output:</strong> Locate the code that outputs the title within the copied template file. This might involve finding the `the_title()` function or a custom function specific to your theme.</p> <p>3. <strong>Modify the Output:</strong> Change the code to output your desired shop title. This could involve directly replacing the existing title with your custom text or using a variable containing your desired title.</p> </ul> <p><strong>Because this method is highly dependent on your specific theme and WooCommerce version, providing precise code examples is impossible. Consult WooCommerce documentation and your theme’s documentation for details.</strong></p> <p><strong>Conclusion</strong></p> <p>Editing your WooCommerce shop title tag is an essential step in optimizing your online store for search engines and improving the user experience. While the WordPress Customizer provides a basic option, <strong>using an SEO plugin is the most recommended approach</strong> due to its flexibility and control. Editing `functions.php` or template files are more advanced methods that should be approached with caution and a solid understanding of WordPress and WooCommerce development. Choose the method that best suits your technical skills and remember to always back up your files before making any changes. By implementing these strategies, you can create compelling and keyword-rich shop titles that attract more customers and boost your sales.</p> </div> <div class="entry-footer"> <span class="screen-reader-text">Tags: </span><div class="post-tags"><span class="cat-links"><a href="https://kuzublog.com/tag/online-store-optimization/" rel="tag">Online Store Optimization</a></span></div> </div> <section class="author-box" itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person"> <div class="author-box-avatar"> <img alt='' src='https://secure.gravatar.com/avatar/5efc8dc5dac65e9d4787dd99664d64a06d1f6d826742ae6c7f219bac09b30ea1?s=75&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/5efc8dc5dac65e9d4787dd99664d64a06d1f6d826742ae6c7f219bac09b30ea1?s=150&d=mm&r=g 2x' class='avatar avatar-75 photo' height='75' width='75' decoding='async'/> </div> <div class="author-box-meta"> <div class="h4 author-box-title"> <a href="https://kuzublog.com/author/kuzublog_com/" class="url fn n" rel="author" itemprop="url"> kuzublog_com </a> </div> <div class="author-box-content" itemprop="description"> </div> <div class="more-posts-button"> <a href="https://kuzublog.com/author/kuzublog_com/" class="bloglo-btn btn-text-1" role="button"><span>View All Posts</span></i></a> </div> </div><!-- END .author-box-meta --> </section> <section class="post-nav" role="navigation"> <h2 class="screen-reader-text">Post navigation</h2> <div class="nav-previous"><h6 class="nav-title">Previous Post</h6><a href="https://kuzublog.com/how-to-work-with-woocommerce-in-wordpress/" rel="prev"><div class="nav-content"> <span>How To Work With Woocommerce In WordPress</span></div></a></div><div class="nav-next"><h6 class="nav-title">Next Post</h6><a href="https://kuzublog.com/how-to-get-product-reviews-in-woocommerce/" rel="next"><div class="nav-content"><span>How To Get Product Reviews In Woocommerce</span> </div></a></div> </section> </article><!-- #post-4587 --> <section id="comments" class="comments-area"> <div class="comments-title-wrapper center-text"> <h3 class="comments-title"> Comments </h3><!-- END .comments-title --> <p class="no-comments">No comments yet. Why don’t you start the discussion?</p> </div> <ol class="comment-list"> </ol> <div id="respond" class="comment-respond"> <h3 id="reply-title" class="comment-reply-title">Leave a Reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/woocommerce-how-to-edit-shop-title-btag/#respond" style="display:none;">Cancel reply</a></small></h3><form action="https://kuzublog.com/wp-comments-post.php" method="post" id="commentform" class="comment-form"><p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> <span class="required-field-message">Required fields are marked <span class="required">*</span></span></p><p class="comment-textarea"><textarea name="comment" id="comment" cols="44" rows="8" class="textarea-comment" placeholder="Write a comment…" required="required"></textarea></p><p class="comment-form-author"><label for="author">Name <span class="required">*</span></label> <input id="author" name="author" type="text" value="" size="30" maxlength="245" autocomplete="name" required="required" /></p> <p class="comment-form-email"><label for="email">Email <span class="required">*</span></label> <input id="email" name="email" type="text" value="" size="30" maxlength="100" aria-describedby="email-notes" autocomplete="email" required="required" /></p> <p class="comment-form-url"><label for="url">Website</label> <input id="url" name="url" type="text" value="" size="30" maxlength="200" autocomplete="url" /></p> <p class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes" /> <label for="wp-comment-cookies-consent">Save my name, email, and website in this browser for the next time I comment.</label></p> <p class="form-submit"><span class="bloglo-submit-form-button"><input name="submit" type="submit" id="comment-submit" class="bloglo-btn primary-button" value="Post Comment" /></span> <input type='hidden' name='comment_post_ID' value='4587' id='comment_post_ID' /> <input type='hidden' name='comment_parent' id='comment_parent' value='0' /> </p></form> </div><!-- #respond --> </section><!-- #comments --> </main><!-- #content .site-content --> </div><!-- #primary .content-area --> </div><!-- END .bloglo-container --> </div><!-- #main .site-main --> <footer id="colophon" class="site-footer" role="contentinfo" itemtype="http://schema.org/WPFooter" itemscope="itemscope"> <div id="bloglo-footer" > <div class="bloglo-container"> <div class="bloglo-flex-row" id="bloglo-footer-widgets"> <div class="bloglo-footer-column col-xs-12 col-sm-6 stretch-xs col-md-4"> <div id="search-2" class="bloglo-footer-widget bloglo-widget bloglo-entry widget widget_search"><div class="h4 widget-title">Search</div> <form role="search" method="get" class="search-form" action="https://kuzublog.com/"> <div> <input type="search" class="search-field" aria-label="Enter search keywords" placeholder="Search" value="" name="s" /> <button role="button" type="submit" class="search-submit" aria-label="Search"> <svg class="bloglo-icon" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M28.962 26.499l-4.938-4.938c1.602-2.002 2.669-4.671 2.669-7.474 0-6.673-5.339-12.012-12.012-12.012S2.669 7.414 2.669 14.087a11.962 11.962 0 0012.012 12.012c2.803 0 5.472-.934 7.474-2.669l4.938 4.938c.267.267.667.4.934.4s.667-.133.934-.4a1.29 1.29 0 000-1.868zM5.339 14.087c0-5.205 4.137-9.342 9.342-9.342s9.342 4.137 9.342 9.342c0 2.536-1.068 4.938-2.669 6.54-1.735 1.735-4.004 2.669-6.54 2.669-5.339.133-9.476-4.004-9.476-9.209z" /></svg> </button> </div> </form> </div> </div> <div class="bloglo-footer-column col-xs-12 col-sm-6 stretch-xs col-md-4"> <div id="categories-2" class="bloglo-footer-widget bloglo-widget bloglo-entry widget widget_categories"><div class="h4 widget-title">Categories</div> <ul> <li class="cat-item cat-item-3"><a href="https://kuzublog.com/category/complete-guide/">Complete Guide</a> </li> <li class="cat-item cat-item-15"><a href="https://kuzublog.com/category/conversion-rate-optimization/">Conversion Rate Optimization</a> </li> <li class="cat-item cat-item-8"><a href="https://kuzublog.com/category/ecommerce-growth/">eCommerce Growth</a> </li> <li class="cat-item cat-item-2"><a href="https://kuzublog.com/category/how-to/">How To</a> </li> <li class="cat-item cat-item-44"><a href="https://kuzublog.com/category/how-to-woocommerce/">How To WooCommerce</a> </li> <li class="cat-item cat-item-9"><a href="https://kuzublog.com/category/online-store-optimization/">Online Store Optimization</a> </li> <li class="cat-item cat-item-11"><a href="https://kuzublog.com/category/payment-gateways/">Payment Gateways</a> </li> <li class="cat-item cat-item-13"><a href="https://kuzublog.com/category/product-management/">Product Management</a> </li> <li class="cat-item cat-item-14"><a href="https://kuzublog.com/category/shipping-fulfillment/">Shipping & Fulfillment</a> </li> <li class="cat-item cat-item-6"><a href="https://kuzublog.com/category/tutorial/">Tutorial</a> </li> <li class="cat-item cat-item-1"><a href="https://kuzublog.com/category/uncategorised/">Uncategorised</a> </li> <li class="cat-item cat-item-12"><a href="https://kuzublog.com/category/woocommerce-plugins/">WooCommerce Plugins</a> </li> <li class="cat-item cat-item-16"><a href="https://kuzublog.com/category/woocommerce-security/">WooCommerce Security</a> </li> <li class="cat-item cat-item-10"><a href="https://kuzublog.com/category/woocommerce-seo/">WooCommerce SEO</a> </li> <li class="cat-item cat-item-7"><a href="https://kuzublog.com/category/woocommerce-tips/">WooCommerce Tips</a> </li> </ul> </div> </div> <div class="bloglo-footer-column col-xs-12 col-sm-6 stretch-xs col-md-4"> <div id="archives-2" class="bloglo-footer-widget bloglo-widget bloglo-entry widget widget_archive"><div class="h4 widget-title">Archives</div> <ul> <li><a href='https://kuzublog.com/2025/04/'>April 2025</a></li> <li><a href='https://kuzublog.com/2025/02/'>February 2025</a></li> <li><a href='https://kuzublog.com/2025/01/'>January 2025</a></li> <li><a href='https://kuzublog.com/2024/12/'>December 2024</a></li> <li><a href='https://kuzublog.com/2024/11/'>November 2024</a></li> <li><a href='https://kuzublog.com/2024/10/'>October 2024</a></li> <li><a href='https://kuzublog.com/2024/09/'>September 2024</a></li> <li><a href='https://kuzublog.com/2024/08/'>August 2024</a></li> <li><a href='https://kuzublog.com/2024/07/'>July 2024</a></li> <li><a href='https://kuzublog.com/2024/06/'>June 2024</a></li> <li><a href='https://kuzublog.com/2024/05/'>May 2024</a></li> <li><a href='https://kuzublog.com/2024/04/'>April 2024</a></li> <li><a href='https://kuzublog.com/2024/03/'>March 2024</a></li> <li><a href='https://kuzublog.com/2024/02/'>February 2024</a></li> <li><a href='https://kuzublog.com/2024/01/'>January 2024</a></li> <li><a href='https://kuzublog.com/2023/12/'>December 2023</a></li> <li><a href='https://kuzublog.com/2023/11/'>November 2023</a></li> <li><a href='https://kuzublog.com/2023/10/'>October 2023</a></li> <li><a href='https://kuzublog.com/2023/09/'>September 2023</a></li> <li><a href='https://kuzublog.com/2023/08/'>August 2023</a></li> <li><a href='https://kuzublog.com/2023/07/'>July 2023</a></li> <li><a href='https://kuzublog.com/2023/06/'>June 2023</a></li> <li><a href='https://kuzublog.com/2023/05/'>May 2023</a></li> <li><a href='https://kuzublog.com/2023/04/'>April 2023</a></li> <li><a href='https://kuzublog.com/2023/03/'>March 2023</a></li> <li><a href='https://kuzublog.com/2023/02/'>February 2023</a></li> </ul> </div> </div> </div><!-- END .bloglo-flex-row --> </div><!-- END .bloglo-container --> </div><!-- END #bloglo-footer --> <div id="bloglo-copyright" class="contained-separator"> <div class="bloglo-container"> <div class="bloglo-flex-row"> <div class="col-xs-12 center-xs col-md flex-basis-auto start-md"><div class="bloglo-copyright-widget__text bloglo-copyright-widget bloglo-all"><span>Copyright 2025 — How To WooCommerce Tips and Tricks - KUZU. All rights reserved.</span></div><!-- END .bloglo-copyright-widget --></div> <div class="col-xs-12 center-xs col-md flex-basis-auto end-md"></div> </div><!-- END .bloglo-flex-row --> </div> </div><!-- END #bloglo-copyright --> </footer><!-- #colophon .site-footer --> </div><!-- END #page --> <a href="#" id="bloglo-scroll-top" class="bloglo-smooth-scroll" title="Scroll to Top" > <span class="bloglo-scroll-icon" aria-hidden="true"> <svg class="bloglo-icon top-icon" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M24.958 18.491l-8.008-8.008a1.29 1.29 0 00-1.868 0l-8.008 8.008c-.534.534-.534 1.335 0 1.868s1.335.534 1.868 0l7.074-7.074 7.074 7.074c.267.267.667.4.934.4s.667-.133.934-.4a1.29 1.29 0 000-1.868z" /></svg> <svg class="bloglo-icon" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M24.958 18.491l-8.008-8.008a1.29 1.29 0 00-1.868 0l-8.008 8.008c-.534.534-.534 1.335 0 1.868s1.335.534 1.868 0l7.074-7.074 7.074 7.074c.267.267.667.4.934.4s.667-.133.934-.4a1.29 1.29 0 000-1.868z" /></svg> </span> <span class="screen-reader-text">Scroll to Top</span> </a><!-- END #bloglo-scroll-to-top --> <div id="bloglo-cursor-dot" class="bloglo-cursor bloglo-js-cursor"> <div class="bloglo-cursor-wrapper"> <div class="bloglo-cursor--follower bloglo-js-follower"></div> <div class="bloglo-cursor--label bloglo-js-label"></div> <div class="bloglo-cursor--icon bloglo-js-icon"></div> </div> </div><!-- END #bloglo-cursor-dot --> <script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/bloglo\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <script> (function () { var c = document.body.className; c = c.replace(/woocommerce-no-js/, 'woocommerce-js'); document.body.className = c; })(); </script> <link rel='stylesheet' id='wc-blocks-style-css' href='https://kuzublog.com/wp-content/plugins/woocommerce/assets/client/blocks/wc-blocks.css?ver=wc-9.7.1' media='all' /> <link rel='stylesheet' id='woof_sections_style-css' href='https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/ext/sections/css/sections.css?ver=1.3.6.6' media='all' /> <link rel='stylesheet' id='woof_tooltip-css-css' href='https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/js/tooltip/css/tooltipster.bundle.min.css?ver=1.3.6.6' media='all' /> <link rel='stylesheet' id='woof_tooltip-css-noir-css' href='https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/js/tooltip/css/plugins/tooltipster/sideTip/themes/tooltipster-sideTip-noir.min.css?ver=1.3.6.6' media='all' /> <link rel='stylesheet' id='ion.range-slider-css' href='https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/js/ion.range-slider/css/ion.rangeSlider.css?ver=1.3.6.6' media='all' /> <link rel='stylesheet' id='woof-front-builder-css-css' href='https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/ext/front_builder/css/front-builder.css?ver=1.3.6.6' media='all' /> <link rel='stylesheet' id='woof-slideout-tab-css-css' href='https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/ext/slideout/css/jquery.tabSlideOut.css?ver=1.3.6.6' media='all' /> <link rel='stylesheet' id='woof-slideout-css-css' href='https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/ext/slideout/css/slideout.css?ver=1.3.6.6' media='all' /> <script id="woof_front-js-extra"> var woof_filter_titles = {"by_price":"by_price","by_instock":"by_instock","by_onsales":"by_onsales","by_text":"by_text","product_cat":"Product categories","product_tag":"Product tags"}; var woof_ext_filter_titles = {"woof_author":"By author","stock":"In stock","onsales":"On sale","byrating":"By rating","woof_text":"By text"}; </script> <script id="woof_front-js-before"> const woof_front_nonce = "72a8e6afd3"; var woof_is_permalink =1; var woof_shop_page = ""; var woof_m_b_container =".woocommerce-products-header"; var woof_really_curr_tax = {}; var woof_current_page_link = location.protocol + '//' + location.host + location.pathname; /*lets remove pagination from woof_current_page_link*/ woof_current_page_link = woof_current_page_link.replace(/\page\/[0-9]+/, ""); woof_current_page_link = "https://kuzublog.com/shop/"; var woof_link = 'https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/'; var woof_ajaxurl = "https://kuzublog.com/wp-admin/admin-ajax.php"; var woof_lang = { 'orderby': "orderby", 'date': "date", 'perpage': "per page", 'pricerange': "price range", 'menu_order': "menu order", 'popularity': "popularity", 'rating': "rating", 'price': "price low to high", 'price-desc': "price high to low", 'clear_all': "Clear All", 'list_opener': "Сhild list opener", }; if (typeof woof_lang_custom == 'undefined') { var woof_lang_custom = {};/*!!important*/ } var woof_is_mobile = 0; var woof_show_price_search_button = 0; var woof_show_price_search_type = 0; var woof_show_price_search_type = 3; var swoof_search_slug = "swoof"; var icheck_skin = {}; icheck_skin.skin = "square"; icheck_skin.color = "blue"; var woof_select_type = 'chosen'; var woof_current_values = '[]'; var woof_lang_loading = "Loading ..."; var woof_lang_show_products_filter = "show products filter"; var woof_lang_hide_products_filter = "hide products filter"; var woof_lang_pricerange = "price range"; var woof_use_beauty_scroll =1; var woof_autosubmit =1; var woof_ajaxurl = "https://kuzublog.com/wp-admin/admin-ajax.php"; /*var woof_submit_link = "";*/ var woof_is_ajax = 0; var woof_ajax_redraw = 0; var woof_ajax_page_num =1; var woof_ajax_first_done = false; var woof_checkboxes_slide_flag = 1; /*toggles*/ var woof_toggle_type = "text"; var woof_toggle_closed_text = "+"; var woof_toggle_opened_text = "-"; var woof_toggle_closed_image = "https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/img/plus.svg"; var woof_toggle_opened_image = "https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/img/minus.svg"; /*indexes which can be displayed in red buttons panel*/ var woof_accept_array = ["min_price", "orderby", "perpage", "woof_author","stock","onsales","byrating","woof_text","min_rating","product_brand","product_visibility","product_cat","product_tag"]; /*for extensions*/ var woof_ext_init_functions = null; woof_ext_init_functions = '{"by_author":"woof_init_author","by_instock":"woof_init_instock","by_onsales":"woof_init_onsales","by_text":"woof_init_text","label":"woof_init_labels","select_radio_check":"woof_init_select_radio_check"}'; var woof_overlay_skin = "default"; function woof_js_after_ajax_done() { jQuery(document).trigger('woof_ajax_done'); } var woof_front_sd_is_a=1;var woof_front_show_notes=1;var woof_lang_front_builder_del="Are you sure you want to delete this filter-section?";var woof_lang_front_builder_options="Options";var woof_lang_front_builder_option="Option";var woof_lang_front_builder_section_options="Section Options";var woof_lang_front_builder_description="Description";var woof_lang_front_builder_close="Close";var woof_lang_front_builder_suggest="Suggest the feature";var woof_lang_front_builder_good_to_use="good to use in content areas";var woof_lang_front_builder_confirm_sd="Smart Designer item will be created and attached to this filter section and will cancel current type, proceed?";var woof_lang_front_builder_creating="Creating";var woof_lang_front_builder_shortcode="Shortcode";var woof_lang_front_builder_layout="Layout";var woof_lang_front_builder_filter_section="Section options";var woof_lang_front_builder_filter_redrawing="filter redrawing";var woof_lang_front_builder_filter_redrawn="redrawn";var woof_lang_front_builder_filter_redrawn="redrawn";var woof_lang_front_builder_title_top_info="this functionality is only visible for the site administrator";var woof_lang_front_builder_title_top_info_demo="demo mode is activated, and results are visible only to you";;var woof_lang_front_builder_select="+ Add filter section"; </script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/js/front.js?ver=1.3.6.6" id="woof_front-js"></script> <script id="woof_url_parser-js-extra"> var url_parser_data = {"filters":{"by_price":"price","woof_author":"author","by_author":"by_author","by_instock":"by_instock","by_onsales":"by_onsales","min_rating":"min_rating","by_rating":"by_rating","woof_text":"name","by_text":"by_text","product_brand":"product_brand","product_visibility":"product_visibility","product_cat":"product_cat","product_tag":"product_tag","instock":"instock","onsale":"onsale","featured":"featured","backorder_not_in":"backorder_not_in","rev_product_brand":"product_brand","rev_product_visibility":"product_visibility","rev_product_cat":"product_cat","rev_product_tag":"product_tag"},"special":{"stock":"instock","onsales":"onsale","product_visibility":"featured","backorder":"backorder_not_in"}}; </script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/ext/url_request/js/url_parser.js?ver=1.3.6.6" id="woof_url_parser-js"></script> <script src="https://kuzublog.com/wp-includes/js/imagesloaded.min.js?ver=5.0.0" id="imagesloaded-js"></script> <script src="https://kuzublog.com/wp-includes/js/masonry.min.js?ver=4.2.2" id="masonry-js"></script> <script src="https://kuzublog.com/wp-includes/js/comment-reply.min.js?ver=6.8.1" id="comment-reply-js" async data-wp-strategy="async"></script> <script id="bloglo-js-extra"> var bloglo_vars = {"ajaxurl":"https:\/\/kuzublog.com\/wp-admin\/admin-ajax.php","nonce":"16e3de39d7","responsive-breakpoint":"1024","sticky-header":{"enabled":false,"hide_on":[""]},"dark_mode":"","strings":{"comments_toggle_show":"Leave a Comment","comments_toggle_hide":"Hide Comments"}}; </script> <script src="https://kuzublog.com/wp-content/themes/bloglo/assets/js/bloglo.min.js?ver=1.1.18" id="bloglo-js"></script> <script src="https://kuzublog.com/wp-content/themes/bloglo/assets/js/bloglo-wc.min.js?ver=1.1.18" id="bloglo-wc-js"></script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce/assets/js/sourcebuster/sourcebuster.min.js?ver=9.7.1" id="sourcebuster-js-js"></script> <script id="wc-order-attribution-js-extra"> var wc_order_attribution = {"params":{"lifetime":1.0e-5,"session":30,"base64":false,"ajaxurl":"https:\/\/kuzublog.com\/wp-admin\/admin-ajax.php","prefix":"wc_order_attribution_","allowTracking":true},"fields":{"source_type":"current.typ","referrer":"current_add.rf","utm_campaign":"current.cmp","utm_source":"current.src","utm_medium":"current.mdm","utm_content":"current.cnt","utm_id":"current.id","utm_term":"current.trm","utm_source_platform":"current.plt","utm_creative_format":"current.fmt","utm_marketing_tactic":"current.tct","session_entry":"current_add.ep","session_start_time":"current_add.fd","session_pages":"session.pgs","session_count":"udata.vst","user_agent":"udata.uag"}}; </script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce/assets/js/frontend/order-attribution.min.js?ver=9.7.1" id="wc-order-attribution-js"></script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/js/tooltip/js/tooltipster.bundle.min.js?ver=1.3.6.6" id="woof_tooltip-js-js"></script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/js/icheck/icheck.min.js?ver=1.3.6.6" id="icheck-jquery-js"></script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/js/html_types/radio.js?ver=1.3.6.6" id="woof_radio_html_items-js"></script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/js/html_types/checkbox.js?ver=1.3.6.6" id="woof_checkbox_html_items-js"></script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/js/html_types/select.js?ver=1.3.6.6" id="woof_select_html_items-js"></script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/js/html_types/mselect.js?ver=1.3.6.6" id="woof_mselect_html_items-js"></script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/ext/by_author/js/by_author.js?ver=1.3.6.6" id="woof_by_author_html_items-js"></script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/ext/by_instock/js/by_instock.js?ver=1.3.6.6" id="woof_by_instock_html_items-js"></script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/ext/by_onsales/js/by_onsales.js?ver=1.3.6.6" id="woof_by_onsales_html_items-js"></script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/ext/by_text/assets/js/front.js?ver=1.3.6.6" id="woof_by_text_html_items-js"></script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/ext/label/js/html_types/label.js?ver=1.3.6.6" id="woof_label_html_items-js"></script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/ext/sections/js/sections.js?ver=1.3.6.6" id="woof_sections_html_items-js"></script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/ext/select_radio_check/js/html_types/select_radio_check.js?ver=1.3.6.6" id="woof_select_radio_check_html_items-js"></script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/ext/smart_designer/js/front.js?ver=1.3.6.6" id="woof_sd_html_items-js"></script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/js/chosen/chosen.jquery.js?ver=1.3.6.6" id="chosen-drop-down-js"></script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/js/ion.range-slider/js/ion.rangeSlider.min.js?ver=1.3.6.6" id="ion.range-slider-js"></script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/ext/slideout/js/jquery.tabSlideOut.js?ver=1.3.6.6" id="woof-slideout-js-js"></script> <script src="https://kuzublog.com/wp-content/plugins/woocommerce-products-filter/ext/slideout/js/slideout.js?ver=1.3.6.6" id="woof-slideout-init-js"></script> <script> ! function() { var e = -1 < navigator.userAgent.toLowerCase().indexOf("webkit"), t = -1 < navigator.userAgent.toLowerCase().indexOf("opera"), n = -1 < navigator.userAgent.toLowerCase().indexOf("msie"); (e || t || n) && document.getElementById && window.addEventListener && window.addEventListener("hashchange", function() { var e, t = location.hash.substring(1); /^[A-z0-9_-]+$/.test(t) && (e = document.getElementById(t)) && (/^(?:a|select|input|button|textarea)$/i.test(e.tagName) || (e.tabIndex = -1), e.focus()) }, !1) }(); </script> </body> </html>