-
AuthorPosts
-
October 26, 2015 at 2:20 am #639570
In the WooCommerce shop page I would like to remove the top dropdown that says ‘products per page’ and, if possible, turn the font on the remaining bottom dropdown into uppercase.
Thanks
October 26, 2015 at 2:24 am #639573Hello There,
Thanks for writing in!
What you are trying to accomplish requires a template customization, we would like to suggest that you use a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.
Once the child theme is active and ready, please insert this line of code in your child theme’s functions.php file
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );
We would loved to know if this has work for you. Thank you.
October 27, 2015 at 1:05 pm #641902This reply has been marked as private.October 27, 2015 at 1:54 pm #641998Hi again,
Thanks for writing back! Please remove the previous code from your child theme and use CSS code instead. Just add it in your Customizer via Appearance > Customize > Custom > CSS:
form.form-wppp-select.products-per-page { display: none !important; }
Let us know how this goes!
October 27, 2015 at 2:59 pm #642103Worked like a charm.
Thank you!
October 27, 2015 at 3:30 pm #642153We’re delighted to assist you with this.
-
AuthorPosts