Skip Navigation

[Resolved] Refering to "Categories" in conditional output

This thread is resolved. Here is a description of the problem and solution.

Problem:
How to check if specific taxonomy term or category assigned to post.

Solution:
Using [wpv-conditional] shortcode you can display content conditionally.

In this case, you can find the solution with the following reply.
https://toolset.com/forums/topic/refering-to-categories-in-conditional-output/#post-377448

Relevant Documentation:
https://toolset.com/documentation/user-guides/conditional-html-output-in-views/displaying-taxonomies-conditionally/

This support ticket is created 8 years, 1 month 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
- 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10: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/Kolkata (GMT+05:30)

This topic contains 8 replies, has 2 voices.

Last updated by gaborG 8 years, 1 month ago.

Assisted by: Minesh.

Author
Posts
#377366
conditional output issue.jpg
categories.jpg

It is very difficult in many cases to find the actual parameter what I want to base the condition on.
First of all, many of the already deleted custom fields' labels are still among the list of fields to which I can refer. This is probably the reason why I can't seem to reuse those slugs in newly added fields - because the conditional output panel still keeps them as if they were actually in use.

Second, there are 3 categories from which we can choose:
Types Fields
Custom Fields
Views Shortcodes
Well, what if I want to refer to the Categories which is a built-in WordPress feature added to the posts?
Where the hell is that?
Seriously, I couldn't find it. Please tell me which of the uniquely named parameters refers to the Categories?

#377393

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

Hello. Thank you for contacting the Toolset support.

A)
*** Please make a FULL BACKUP of your database and website.***

To delete custom fields completely, could you please try to follow following steps:
1. If you remove a field from a group, this does not delete the definition of the Field itself
2. To delete the field completely, so to be able to recreate it, we have to follow this steps:
- Head to Types > Custom Fields > Control Custom Fields
- Mark the desired Field with the checkbox and choose "delete" from the DropDown (Bulk Actions)
- Hit "apply" and confirm the action

This will also delete the wp_options entry and enable you to recreate the field with the same slug.

B)
To check taxonomy term with condition, Please try to follow following documentation.
https://toolset.com/documentation/user-guides/conditional-html-output-in-views/displaying-taxonomies-conditionally/

#377401
course categories.jpg
discount labels.jpg

Thanks for the link Minesh, I looked it up and I found the way to identify the proper taxonomy.
However, when I add the condition, it changes EVERY instance, not only the ones to which the condition is true.

[wpv-conditional if="( '[wpv-taxonomy-title]' eq '$24 discount' )"]
<div class="discount" style="background-color: #FF6600;">DISCOUNT</div>
[/wpv-conditional]
[wpv-conditional if="( '[wpv-taxonomy-title]' ne '$24 discount' )"]
<div class="discount" style="background-color: #ccc;"> </div>
[/wpv-conditional]

I added this Category to 6 of the 14 courses. However, either it shows the orange colored DISCOUNT div to ALL 14, or to none at all.
Am I missing something?

#377408

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

Have you checked section "Checking if a post has a specific term assigned" on following link:
=> https://toolset.com/documentation/user-guides/conditional-html-output-in-views/displaying-taxonomies-conditionally/

#377410

Yes, but this doesn't do anything either:

[wpv-conditional if="( has_term('24-discount', 'wpv-taxonomy-slug') eq '1' )" ]
<div class="discount" style="background-color: #FF6600;">DISCOUNT</div>
[/wpv-conditional]

I added the "has_term" as a registered function, but still nothing.

#377418

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

you may miss something. I would like to check on your install.

Please send me problem URL and which view you are using?

*** Please make a FULL BACKUP of your database and website.***
I would also eventually need to request temporary access (WP-Admin and FTP) to your site. Preferably to a test site where the problem has been replicated if possible in order to be of better help and check if some configurations might need to be changed.

I would additionally need your permission to de- and re-activate Plugins and the Theme, and to change configurations on the site. This is also a reason the backup is really important. If you agree to this, please use the form fields I have enabled below to provide temporary access details (wp-admin and FTP).

I have set the next reply to private which means only you and I have access to it.

#377448

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

Could you please check now:

You have used wrong taxonomy slug.

 [wpv-conditional if="( has_term('24-discount', 'category',null) eq '1' )" ]
      <div class="discount" style="background-color: #FF6600;">DISCOUNT</div>
      [/wpv-conditional]

The discount test is showing now.

I hope above solution will help you to resolve your issue.

#377484

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

I hope this issue is resolved.

#377677

Yes, thank you Minesh.

This ticket is now closed. If you're a WPML client and need related help, please open a new support ticket.