kristofG
Support threads created in the last 30 days: 3
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
The uploaded images to the original post are different from the translated post
Started by: kristofG in: Toolset Professional Support |
2 | 14 | 5 years, 7 months ago | ||
Can I use FIELD_PLACEHOLDER like FIELD_NAME: FIELD_VALUE?
Started by: kristofG in: Toolset Professional Support |
2 | 5 | 5 years, 7 months ago | ||
Looping over attached pdf files starts with an empty list item
Started by: kristofG in: Toolset Professional Support |
2 | 9 | 5 years, 7 months ago | ||
Update to Toolset Views 2.8.0.1 and Toolset WooCommerce Views 2.7.9 failed
Started by: kristofG in: Toolset Professional Support |
2 | 4 | 5 years, 7 months ago | ||
I need to get the slug and id from the current WooCommerce Category
Started by: kristofG
in: Toolset Professional Support
Problem: I would like to be able to access the current taxonomy term archive's slug and ID using sortcodes. Solution: Use the wpv-taxonomy-archive shortcode to display this information. Slug: [wpv-taxonomy-archive info="slug"] ID: [wpv-taxonomy-archive info="id"] Relevant Documentation: |
2 | 9 | 5 years, 7 months ago | ||
I would like to use an Avada variable in my View
Started by: kristofG
in: Toolset Professional Support
Problem: Convert custom fields of other plugins under control of Types plugin. Solution: Please check this document: section "Converting custom fields" After control those custom fields, then you will be able to display the custom fields value with Types shortcode [types ...], you can insert the shortcodes within Views UI, for example: https://toolset.com/documentation/getting-started-with-toolset/create-templates-to-display-custom-posts/designing-a-template-without-any-page-builder/#adding-fields-to-the-template Relevant Documentation: |
2 | 5 | 5 years, 8 months ago | ||
Can I assign 1 Content Template to 2 different Views?
Started by: kristofG in: Toolset Professional Support |
2 | 3 | 5 years, 9 months ago | ||
Get the image ID of the repeatable image fields
Started by: kristofG
in: Toolset Professional Support
Problem: The issue here is that the user wanted to get the id's of the repeatable image fields. Solution: This can be done by using the code below. // Add Shortcode function get_image_id( $atts ) { global $wpdb; // Attributes $atts = shortcode_atts( array( 'field' => '', 'id' => '' ), $atts ); $image_urls = get_post_meta($atts['id'],$atts['field']); $id_list = array(); foreach ($image_urls as $image_url) { if(!empty($image_url)){ $attachment = $wpdb->get_col($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE guid='%s';", $image_url )); array_push($id_list, $attachment[0]); } } return implode(",", $id_list); } add_shortcode( 'get_image_id', 'get_image_id' ); So how this actually works is that you need to call it like this [get_image_id id='[wpv-post-id]' field='wpcf-field-name'] |
3 | 9 | 5 years, 9 months ago | ||
Image Gallery shortcode not resizing/cropping images correctly
Started by: kristofG in: Toolset Professional Support |
2 | 7 | 5 years, 9 months ago | ||
My custom shortcode stopped working (probably after an update)
Started by: kristofG
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 9 | 5 years, 10 months ago | ||
display all fields in a group
1
2
Started by: kristofG
in: Toolset Professional Support
Problem: The issue here is that the user wanted display their taxonomies on a post using a view. Solution: All you need to do is to create a view that is listing out the taxonomies. Then you just add a filter to that view for the Taxonomy Term then set that filter to display based on the area the view is displayed. |
2 | 29 | 5 years, 10 months ago | ||
Can we use bootstrap spacing classes?
Started by: kristofG
in: Toolset Professional Support
Problem: Can we use Bootstrap spacing classes? Solution: Not at this time. Toolset currently implements Bootstrap 3. Spacing classes are not available in this version. |
2 | 3 | 5 years, 10 months ago | ||
We need to integrate our CPT with a third party rental plugin
Started by: kristofG in: Toolset Professional Support |
2 | 9 | 5 years, 11 months ago | ||
This one particular View does not work in English
Started by: kristofG
in: Toolset Professional Support
Problem: I have a View filtered by post date. It does not show any results in one language, but works in other languages. Solution: The View is working as expected, there are no matching posts in this language. |
2 | 10 | 6 years, 3 months ago | ||
I need to add the Taxonomy to the Yoast SEO title
Started by: kristofG
in: Toolset Professional Support
Problem: Solution: |
2 | 3 | 6 years, 3 months ago |