Search bar on TOP of woocomerce
-
hi there,
i need the searchbar to be displayed on TOP of the woocommerce page like so: https://ibb.co/YZyBmMb
when i dd the shortcode to the SHOP page, it lands on the very bottom of the page. i just had a customized shortcode for another search plugin. can someone help doing one for this plugin?
here was the php code for the other plugin:
add_action( 'woocommerce_before_shop_loop', function() { echo '<div class="fibosearch-bar">' . do_shortcode('[fibosearch layout="classic"]') . '</div>'; }, 1 ); add_action( 'wp_footer', function() { ?> <script> window.onload = function() { var wooTitle = document.querySelector(".woocommerce-products-header__title"); var fibosearchBar = document.querySelector(".fibosearch-bar"); if (wooTitle !== null && fibosearchBar !== null) { wooTitle.parentNode.insertBefore(fibosearchBar, wooTitle.nextSibling); } } </script> <?php } );
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Search bar on TOP of woocomerce’ is closed to new replies.