Oukei - I have some ordering hidden link
But only IDs that are changing not these that are listed after Brand or Category ... that is beacause of ajax right ... 🙁
I really do not want to show this "submit" button ... is there some possibility
I really do not want to show this "submit" button ... is there some possibility
No it is not possible, a submit button is required.
Hi!
I have managed to get filltering to work as I wanted - withtout submit button.
But still need assistance in ordering products - for example hidden link
there is only one manufacturer, but 4 product categories - and I would love to order products on that list
How would you like to order products? Are you saying you would like to allow visitors to sort the products on the front-end, or you want to add ordering to this View? Maybe it would help for me to see how you have it set up in wp-admin.
We are going in circles. The only built-in way to group Products by multiple taxonomies like this is to use nested Views as we discussed before. When you use nested Views, AJAX updates are not supported and a submit button is required.
Hi Cristian, lets drop this filtering - i will think other solution.
I have now problem with a layout I try to add, but its not working.
hidden link is the page where I have assigned Layout ID 4478
But they are not showing what needed 🙁
I assinged two times different view for "joonised" page, but it shows only one.
Same problem is also with Kataloogid and Juhendid 🙁 Arhcive page is not working single post type page is working .
Also, I have added search box for main menu, and would like to display search results in tabs.
So each tab will show assigned post type - is it possible.
Does toolset have also predictive search box similar service? So that search box in menu allready will predict what I like to search
Thank you in advance!
Okay I have split your two new questions into separate tickets and I will follow up there shortly. Our policy is one topic per ticket. This helps us keep the forum organized so everyone can find answers to their similar questions.
Hello - Im thinking is it possible to order with ajax if there is only one taxonomy.
For example - if we would order products only by product catecory ?
So they would be
Product category
- Product
- product
...
PRoduct categroy 2
- Product
- Product
Unfortunately this design requires nested Views to produce the Product Category section headers. AJAX updates are not supported and the search form requires a submit button.
We have found solution for that with fuction.php
But, if i add dynamic fields to post object like "post_category" with filter ( add_filter( 'wpv_filter_query_post_process', 'my_custom_filter'); )
can i access this field from view loop editor?
Something like that
function my_custom_function($content)
{
foreach($content->post as &$post) {
$post->post_category = 'Something';
}
return $content;
}
add_filter( 'wpv_filter_query_post_process', 'my_custom_function');
<td width="30%"><h4>[post_category]</h4></td>
<td width="30%">[wpv-post-link]</td>
There are no shortcodes for accessing arbitrary information in the post object directly like this. The Views and Types shortcodes we offer are listed here:
https://toolset.com/documentation/user-guides/views-shortcodes/
https://toolset.com/documentation/customizing-sites-using-php/functions/
If you want to display the taxonomy terms associated with each post in the loop, you can use the wpv-post-taxonomy shortcode. But again, that doesn't help you sort or group by taxonomy term.