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 | 3 years, 11 months ago | |
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 | 4 years ago | |
Conditional "if at least one term is set"
Iniciado por: romanB-3 en: Toolset Professional Support |
|
2 | 3 | 4 years ago | |
Breaklines using access | #266
Iniciado por: romanB-3 en: Toolset Professional Support |
|
2 | 2 | 4 years, 3 months ago | |
Publish form with repeater group | #266
Iniciado por: romanB-3 en: Toolset Professional Support |
|
2 | 4 | 4 years, 3 months ago | |
cannot select post type for an elementor archive
Iniciado por: romanB-3 en: Chat Support |
|
1 | 2 |
4 years, 4 months ago
|
|
Toolset chat support ticket by romanB-3 – 1614095648
Iniciado por: romanB-3 en: Chat Support |
|
1 | 2 |
4 years, 6 months ago
|
|
Toolset chat support ticket by romanB-3 – 1601048646
Iniciado por: romanB-3 en: Chat Support |
|
1 | 1 |
4 years, 11 months ago
|
|
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 |
4 years, 11 months ago
|
|
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 |
4 years, 11 months ago
|
|
Conflict between AJAX and select2 library in Views
Iniciado por: romanB-3 en: Toolset Professional Support |
|
2 | 5 | 4 years, 12 months ago | |
Conflict with accordians themefusion (avada) shortcode
Iniciado por: romanB-3 en: Toolset Professional Support |
|
2 | 12 | 6 years, 4 months ago | |
Set redirection when page is access restricted
1
2
Iniciado por: romanB-3 en: Toolset Professional Support |
|
2 | 17 | 8 years, 8 months ago |