Skip Navigation

[Resolved] custom search page with taxonomy image

This support ticket is created 5 years, 9 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 - -
13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 - -

Supporter timezone: America/New_York (GMT-04:00)

This topic contains 25 replies, has 2 voices.

Last updated by Christian Cox 5 years, 8 months ago.

Assisted by: Christian Cox.

Author
Posts
#1210877

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

#1211355

I really do not want to show this "submit" button ... is there some possibility
No it is not possible, a submit button is required.

#1214094

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

#1214275

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.

#1215498

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.

#1216652

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!

#1217048

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.

#1218342

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

#1220031

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.

#1224762

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>

#1224773

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.