Types is a WordPress plugin that lets you easily create custom taxonomies and organize your custom content types in your website.
When you ask for help or report issues, make sure to tell us what you have created so far and what you want to achieve.
Viewing 15 topics - 751 through 765 (of 798 total)
Problem:
Q1. Do you suggest put that like a taxonomy of lessons, or like a custom field?
Q2. I want to put an image to represent the difficult of the lesson. How can I relacionet a image to the taxonomy or custom field. In order that is the lesson is Basic, in the web lesson apears the "basic icon image", not the word "basic". The same with intermdiate, but other image, and the same with advanced. Solution:
A1) Since you are going to setup it as a single choice field, I suggest you setup it as a custom select field,
A2) If you setup it as a custom field, then you can display different image for different "difficult option" with Views shortcode [wpv-conditional], see our document: https://toolset.com/documentation/views-shortcodes/#wpv-conditional
Checking a custom field:
[wpv–conditional if="( $(test-custom-field) eq 'my value' )"]This field has value "my value"[/wpv–conditional] Relevant Documentation: https://toolset.com/documentation/views-shortcodes/#wpv-conditional
Problem:
In the admin edit screens, the count of terms is wrong, when a taxonomy (and its terms) are shared among several CPTs.
The custom taxonomy is shared among 5 custom post types, but when checking a specific CPT taxonomy, the post count of each term is for ALL CPTs instead of the count for that specific CPT. Solution:
In the wordpress back-end, the post count of term is outputted from your database table "wp_term_taxonomy", the value of column "count", which will count posts in all post types, so it isn't a bug, but an expected result:
the post count of each term is for ALL CPTs Relevant Documentation:
Problem:
I'm using this shortcode to show an edit link to a CRED form
[cred_link_user_form form='111' form_name='Edit - business member' text='Edit %TITLE%' target='_self']
I"m getting a message "No user specified" instead of the link. Solution:
This is fixed in CRED 1.7, please update CRED to the latest version to fix the issue.