Forums › Forums › Search & Filter Pro › Results of search – Change position orderBy
Tagged: V3
- This topic has 9 replies, 2 voices, and was last updated 4 years, 5 months ago by Trevor.
-
Anonymous(Private) May 22, 2020 at 2:59 pm #245530
Hello,
I’m using your plugin and I am really satisfied.
Firstly, I want to know how can I appear the number of results when I use the sort order Field.
Secondly, I want to change the position of Field Sort Order, below I have a URL with images that I’m explaining in detail
Trevor(Private) May 22, 2020 at 5:40 pm #245587We have received feature requests to allow the one form to be broken into parts to be placed (and styled) in different places (and differently styled) on the page.
We have taken those requests on board for our forthcoming V3 (which we hope to release in late June/early July – but that may flex a little as we polish the code and UI). For example, you might have a form in WooCommerce that has a Search Box (text field), a Sort Order drop down, and then other fields (Product Categories, Product Tags, Variations, etc). You will be able to place the Search Box in the header, and the Sort Order above the products, and the rest of the form in the sidebar.
But, that is not possible right now.
As to the other question: I want to know how can I appear the number of results when I use the sort order Field.
I am not sure what you mean. Do you want the number of results to appear next to the re-positioned sort by field? If that is what you want, Display Results Method are you using? Are you able to send me a live link/URL to your search page so I can take a look?
Anonymous(Private) May 27, 2020 at 7:58 am #245987Hello!
When a customer makes a sortation (e.g by price) I want to appear at the top of the archive, the number of results.I can give you a link, but the website is under construction, so you have to provide me your IP in order to exclude it from the system
Trevor(Private) May 29, 2020 at 2:19 pm #246534Ah, I see, you would have to edit the archive template and add code LIKE this, but you need to know the name of the wp_query array variable, which might not be
$query
(it varies from theme to theme, many use$wp_query
instead):<div>Found <?php echo $query->found_posts; ?> Results<br /> Page <?php echo $query->query['paged']; ?> of <?php echo $query->max_num_pages; ?></div>
-
AuthorPosts