Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- jQuery(document).ready(function($) {
- // Attach event handler to the search form submission
- $('form.e-search-form').on('submit', function(event) {
- // Prevent the default form submission
- event.preventDefault();
- // Get the search input value
- var searchQuery = $(this).find('input[type="search"]').val();
- // Redirect to the search results page with the product post type query
- var searchUrl = '/?s=' + searchQuery + '&post_type=product';
- window.location.href = searchUrl;
- });
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment