romanB-3
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
Status | Debate | Supporter | Voces | Mensajes | Caducidad |
---|---|---|---|---|---|
Draw polylines into Toolset Maps | #559
Iniciado por: romanB-3 en: Toolset Professional Support |
|
3 | 4 | hace 3 años, 5 meses | |
Archive page for custom post type created by TheEventsCalendar | #135
Iniciado por: romanB-3
en: 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 | hace 3 años, 5 meses | |
Conditional "if at least one term is set"
Iniciado por: romanB-3 en: Toolset Professional Support |
|
2 | 3 | hace 3 años, 5 meses | |
Breaklines using access | #266
Iniciado por: romanB-3 en: Toolset Professional Support |
|
2 | 2 | hace 3 años, 9 meses | |
Publish form with repeater group | #266
Iniciado por: romanB-3 en: Toolset Professional Support |
|
2 | 4 | hace 3 años, 9 meses | |
cannot select post type for an elementor archive
Iniciado por: romanB-3 en: Chat Support |
|
1 | 2 |
hace 3 años, 10 meses
|
|
Toolset chat support ticket by romanB-3 – 1614095648
Iniciado por: romanB-3 en: Chat Support |
|
1 | 2 |
hace 3 años, 12 meses
|
|
Toolset chat support ticket by romanB-3 – 1601048646
Iniciado por: romanB-3 en: Chat Support |
|
1 | 1 |
hace 4 años, 4 meses
|
|
Help with conditional
Iniciado por: romanB-3
en: 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 |
hace 4 años, 4 meses
|
|
Get image from id
Iniciado por: romanB-3
en: 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 |
hace 4 años, 4 meses
|
|
Conflict between AJAX and select2 library in Views
Iniciado por: romanB-3 en: Toolset Professional Support |
|
2 | 5 | hace 4 años, 5 meses | |
Featured posts in archive view
Iniciado por: romanB-3 en: Toolset Professional Support |
|
2 | 9 | hace 4 años, 5 meses | |
Strange behaviour on complex view
Iniciado por: romanB-3
en: Toolset Professional Support
Problem: Solution: |
|
2 | 9 | hace 4 años, 5 meses | |
Prefilter filters on term archive page 2
Iniciado por: romanB-3 en: Toolset Professional Support |
|
2 | 5 | hace 4 años, 6 meses | |
js_event_wpv_parametric_search_results_updated not applied
Iniciado por: romanB-3
en: 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 | hace 4 años, 6 meses |