romanB-3
Fils de soutien créés au cours des 30 derniers jours : 0
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
Status | Sujet | Supporter | Voix | Publications | Nouveauté |
---|---|---|---|---|---|
Draw polylines into Toolset Maps | #559
Commencé par : romanB-3 in: Toolset Professional Support |
|
3 | 4 | Il y a 3 années et 4 mois | |
Archive page for custom post type created by TheEventsCalendar | #135
Commencé par : romanB-3
in: Toolset Professional Support
Problem: Solution: add_filter( 'register_post_type_args', 'change_tec_venue_cpt', 10, 2 ); function change_tec_venue_cpt( $args, $post_type ){ if( $post_type === 'tribe_venue' ){ $args['has_archive'] = 'venue'; $args['rewrite'] = array( 'slug' => 'venues', 'with_front' => true, ); } return $args; } |
|
2 | 5 | Il y a 3 années et 5 mois | |
Conditional "if at least one term is set"
Commencé par : romanB-3 in: Toolset Professional Support |
|
2 | 3 | Il y a 3 années et 5 mois | |
Breaklines using access | #266
Commencé par : romanB-3 in: Toolset Professional Support |
|
2 | 2 | Il y a 3 années et 8 mois | |
Publish form with repeater group | #266
Commencé par : romanB-3 in: Toolset Professional Support |
|
2 | 4 | Il y a 3 années et 9 mois | |
cannot select post type for an elementor archive
Commencé par : romanB-3 in: Chat Support |
|
1 | 2 |
Il y a 3 années et 10 mois
|
|
Toolset chat support ticket by romanB-3 – 1614095648
Commencé par : romanB-3 in: Chat Support |
|
1 | 2 |
Il y a 3 années et 12 mois
|
|
Toolset chat support ticket by romanB-3 – 1601048646
Commencé par : romanB-3 in: Chat Support |
|
1 | 1 |
Il y a 4 années et 4 mois
|
|
Help with conditional
Commencé par : romanB-3
in: Chat Support
Problem: Solution: In this user's case the conditional shortcode wasn't formatted properly. It was missing the equal sign for the name attribute as well as the closing quotation for the thumbnail_id. The correct format should be. |
|
1 | 2 |
Il y a 4 années et 4 mois
|
|
Get image from id
Commencé par : romanB-3
in: Chat Support
Problem: The issue here is that the user has a set of taxonomies with the hidden custom field 'thumbnail_id' that stores the id's of images on their wordpress install. They want to retrieve the images in their taxonomy archive based on the id in thumbnail_id field. Solution: You can actually get the id from the field using the shortcode in the link below. However in order to get the actual image you will need to use the function below and wrap it as a shortcode. https://developer.wordpress.org/reference/functions/wp_get_attachment_image/ The custom shortcode for this would be // Add Shortcode function cust_get_image_from_id( $atts ) { // Attributes $atts = shortcode_atts( array( 'thumbnail_id' => '', ), $atts ); return wp_get_attachment_image($atts['thumbnail_id']); } add_shortcode( 'image_from_id', 'cust_get_image_from_id' ); Add this to your custom code section in Toolset -> Settings -> Custom Code and activate it. Once you have done this you can then use the shortcode like this [image_from_id thumbnail_id="[wpv-taxonomy-field name='thumbnail_id']"] |
|
1 | 2 |
Il y a 4 années et 4 mois
|
|
Conflict between AJAX and select2 library in Views
Commencé par : romanB-3 in: Toolset Professional Support |
|
2 | 5 | Il y a 4 années et 5 mois | |
Featured posts in archive view
Commencé par : romanB-3 in: Toolset Professional Support |
|
2 | 9 | Il y a 4 années et 5 mois | |
Strange behaviour on complex view
Commencé par : romanB-3
in: Toolset Professional Support
Problem: Solution: |
|
2 | 9 | Il y a 4 années et 5 mois | |
Prefilter filters on term archive page 2
Commencé par : romanB-3 in: Toolset Professional Support |
|
2 | 5 | Il y a 4 années et 6 mois | |
js_event_wpv_parametric_search_results_updated not applied
Commencé par : romanB-3
in: Toolset Professional Support
Problem: I am trying to initialize the select2.js library on my custom search filters but I see an error in the console: select2.min.js - Uncaught Error: No select2/compat/inputData Solution: |
|
2 | 3 | Il y a 4 années et 6 mois |