Hi @nibbleandpeck,
Can you please provide us with a screencast showing this issue?
Thank you!
Hi @nibbleandpeck,
I have tried replicating, but for me, the product sorting shows. https://paste.pics/C2HG7 Can you please make sure that you have WordPress, Neve, and the plugins updated?
Also, if you have activated a caching plugin, please clear it and check again if the issue persists.
Thank you! Please let us know if it worked.
All done and it still is not visible.
Hi @nibbleandpeck,
I kindly suggest doing a plugin conflict test. Please back up your site, for security purposes, and try to disable your plugins one by one, to see if any of them causes this issue to appear.
Please let us know if this worked.
@nibbleandpeck i may have solved this so thought i would share my solution…
I made a couple of very minor changes to the code on here to REMOVE the sort functionality: https://www.businessbloomer.com/woocommerce-remove-default-sorting-dropdown/
I switched the “remove_action” to “add_action” and it appears to be working for me.
Drop this code into your functions.php file:
add_action( 'wp', 'add_default_sorting_neve' );
function add_default_sorting_neve() {
add_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 );
add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 );
}
This worked for me too, thank you!