skip to Main Content

Sorting products by sale – woocommerce

I am using the following code in my function.php of my wordpress theme. And it sorts and display only the single products, not sorting/listing the variable products which are on discount/sale. add_filter( 'woocommerce_get_catalog_ordering_args', 'wcs_get_catalog_ordering_args' ); function wcs_get_catalog_ordering_args( $args ) {…

VIEW QUESTION

Add sort variable at end of URL and manipulate if already exists in URL – SEO

Hi I had URLs like this... www.example.com/list.php?type=vehicles&stype=Cars www.example.com/list.php?type=vehicles&stype=Cars&loc=Ludhiana And to sort results, sort variable was appending at last of URL and URL after adding sort variable was www.example.com/list.php?type=vehicles&stype=Cars&sort='**ANYVALUE**' www.example.com/list.php?type=vehicles&stype=Cars&loc=Ludhiana&sort='**ANYVALUE**' And on href i was using <a href="?<?php echo http_build_query(array_merge($_GET, array('sort'…

VIEW QUESTION
Back To Top
Search