Skip Navigation

[Resolved] I need help to setup taxonomy view

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.

No supporters are available to work today on Toolset forum. Feel free to create tickets and we will handle it as soon as we are online. Thank you for your understanding.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Karachi (GMT+05:00)

This topic contains 10 replies, has 2 voices.

Last updated by charitosA 3 months, 2 weeks ago.

Assisted by: Waqar.

Author
Posts
#2695539

Tell us what you are trying to do?

I added a taxonomy view but it is displaying all the subcategories on the frontend search bar. I want by default to open the main category but I don't want the text label to be visible in the filter view. Instead, I want only 3 categories Fertility - Maternity - Support & administration visible in the filter view + to add a search field with drop-down menu with all the subcategories on the same div

Is there any documentation that you are following?
I was searching but I didn't find anything and I didn't find a way to filter this

Is there a similar example that we can see?
I do not know

What is the link to your site? hidden link

#2695668
taxonomy-parent-filter.png

Hi,

Thank you for contacting us and I'd be happy to assist.

In the taxonomy view's query filter settings, you can set the parent filter to 'None' as shown in the attached screenshot.

This will give you the list of all the parent terms, without the child terms.

regards,
Waqar

#2696074
16.png
15.png

Hello again Waqar,

It doesn't work this way. I have custom view Team top members and posts with all the team members. When I use the suggested from your setup I cannot see them.

#2696090

Thanks for writing back.

To better understand the setup and suggest the next steps, I'll need to see how this view and the terms are set up in the admin area.

Can you please share temporary admin login details, in reply to this message?

Note: Your next reply will be private and making a complete backup copy is recommended before sharing the access details.

#2696378

Hello Waqar,
I hope you can find some time to look into my issue with the front-end display filtering.
Best,
Charitos

#2696400

Thank you for sharing the access details.

I see that there are two views used on the 'Our Team' page.

1). Team Top Members:
This is a taxonomy view to show the 'Team Top Positions' taxonomy terms.

2). Team Bottom Members:
This is a post view to show the list of 'Team Members' posts.

For what you're trying to achieve for the upper top section, you'll need a post view and not a taxonomy view. That is because our goal is to show the 'Team Members' posts and not just the taxonomy terms.

I would recommend creating a duplicate of the view 'Team Bottom Members' and using that for this upper top section too. The difference would be that this view will be using the taxonomy filter for the 'Team Top Positions' and not the 'Team Bottom Positions'.

Once this view is ready and working, let me know and I'll assist you with some custom script to show only the parent-level taxonomy terms (Fertility - Maternity - Support & administration) in this view's filter.

#2697554

Hi Waqar,

I did it, I tried to add filters to the subcategories but it won't show the team members if I hide it from the search.

Best,
Vessy

#2698088

Hi Waqar,

Did you have time to look at the filtering solution?

Best,
Charitos

#2698593

Thank you for sharing this update.

I've added the following CSS code in the view 'Team Top Members' and now, it is only showing the sub-parent level term options:


form[name="wpv-filter-155"] .form-group input[name="wpv-top-position"],
form[name="wpv-filter-155"] .form-group label {
    display:none;
}

form[name="wpv-filter-155"] .form-group label[for="top-position-fertility"],
form[name="wpv-filter-155"] .form-group label[for="top-position-maternity"],
form[name="wpv-filter-155"] .form-group label[for="top-position-support"] {
    display:block;
}

#2698974

Hi Waqar,

Thank you for the filters but this still doesn't display all the items by default when I load the page. I mean, when I load the page I want all the team members to be shown. When I press 'Fertility' to filter only the fertility team members, the same for the other 2 categories.

Best,
Charitos

#2699079

Hi Waqar,

I managed to solve my problem. I adjusted the filters in the functions.php:

// filters for all team members by priority category
add_filter( 'wpv_filter_query', 'filter_include_cat_fn_159', 1000 , 3 );

function filter_include_cat_fn_155( $query_args, $view_settings ) {
if ( isset( $view_settings['view_id'] ) && $view_settings['view_id'] == 155 ) {
if ( empty( $query_args['tax_query'] ) ) {
$query_args['tax_query'][0]['taxonomy'] = 'top-position';
$query_args['tax_query'][0]['field'] = 'slug';
$query_args['tax_query'][0]['terms'] = array( 'expert-doctors', 'embryologists', 'midwives', 'nurses', 'care-taker', 'administration', 'accounting', 'services' );
$query_args['tax_query'][0]['operator'] = 'IN';
$query_args['tax_query'][0]['include_children'] = '';
$query_args['tax_query']['relation'] = 'AND';
}
}
return $query_args;
}
add_filter( 'wpv_filter_query', 'filter_include_cat_fn_159', 1000 , 3 );

function filter_include_cat_fn_159( $query_args, $view_settings ) {
if ( isset( $view_settings['view_id'] ) && $view_settings['view_id'] == 159 ) {
if ( empty( $query_args['tax_query'] ) ) {
$query_args['tax_query'][0]['taxonomy'] = 'bottom-position';
$query_args['tax_query'][0]['field'] = 'slug';
$query_args['tax_query'][0]['terms'] = array( 'expert-doctors', 'midwives', 'nurses', 'care-taker', 'admin', 'accounting', 'services' );
$query_args['tax_query'][0]['operator'] = 'IN';
$query_args['tax_query'][0]['include_children'] = '';
$query_args['tax_query']['relation'] = 'AND';
}
}
return $query_args;
}

I have the view I wanted.
Thank you for the help. Much appreciated.
Best,
Charitos

charitosA confirmed that the issue was resolved on 2024-05-23 08:41:00.
This ticket is now closed. If you're a Toolset client and need related help, please open a new support ticket.