stuart
Just loving programming without programming ?
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 |
---|---|---|---|---|---|
Toolset Setting "Custom Code snippets" search not working
Iniciado por: stuart en: Toolset Professional Support |
|
2 | 3 | hace 3 años, 4 meses | |
reload map disables bootstrap modal js-wpv-addon-maps-reload-map
Iniciado por: stuart en: Toolset Professional Support |
|
2 | 4 | hace 3 años, 8 meses | |
Highlight a view list item from a Google map click
Iniciado por: stuart en: Toolset Professional Support |
|
2 | 9 | hace 3 años, 8 meses | |
Bootstrap modal not appearning when Toolset Maps in fullscreen mode
Iniciado por: stuart en: Toolset Professional Support |
|
2 | 2 | hace 3 años, 8 meses | |
views slider navigation using keys (keyboard left and right arrows)
Iniciado por: stuart en: Toolset Professional Support |
|
2 | 4 | hace 3 años, 8 meses | |
programaticaly use a link to set a map zoom level
Iniciado por: stuart en: Toolset Professional Support |
|
2 | 3 | hace 3 años, 8 meses | |
Container video background
Iniciado por: stuart en: Chat Support |
|
1 | 2 |
hace 3 años, 8 meses
|
|
Click to direct streetview of location
Iniciado por: stuart en: Toolset Professional Support |
|
2 | 3 | hace 3 años, 8 meses | |
Capture the distance between two points and save to custom field
Iniciado por: stuart
en: Toolset Professional Support
Problem: I have two address fields, one in a parent post type and one in a child post type. When a new child post is created, I would like to calculate the distance between the two addresses and save that distance in another custom field in the child post type. Solution: You can use the cred_submit_complete hook to trigger custom code with the shortcode toolset-maps-distance-value to calculate the distance between two addresses. Use the update_post_meta function to store that distance in another custom field. add_action('cred_submit_complete', 'tssupp_calc_parent_child_distance',10,2); function tssupp_calc_parent_child_distance($post_id, $form_data) { $forms = array(123, 456); $relationship_slug = 'book-chapter'; $parent_address_slug = 'book-address-1'; $child_address_slug = 'chapter-address-1'; $child_distance_slug = 'chapter-single-line-1'; $unit = 'km'; $decimals = 2; // if a specific form if ( in_array( $form_data['id'], $forms ) ) { $related_post = toolset_get_related_post( $post_id, $relationship_slug, 'parent' ); if( $related_post ) { $child_location = get_post_meta( $post_id, 'wpcf-'.$child_address_slug, true ); $parent_location = get_post_meta( $related_post, 'wpcf-'.$parent_address_slug, true ); if( $child_location && $parent_location ) { $distance = do_shortcode("[toolset-maps-distance-value location='" . $child_location . "' postmeta='wpcf-". $parent_address_slug . "' postmeta_id='" . $related_post . "' unit='" . $unit . "' decimals='" . $decimals . "']"); update_post_meta( $post_id, 'wpcf-'.$child_distance_slug, $distance ); } } } } Relevant Documentation: |
|
2 | 6 | hace 3 años, 8 meses | |
Maps distance filter using a custom field as the location
Iniciado por: stuart
en: Toolset Professional Support
Problem: Get the distance value from related "EOI" post(current-client-address field) and related "site" posts(site-address field). Solution: You can follow our document to customize the [toolset-maps-distance-value] shortcode, for example: Relevant Documentation: |
|
2 | 10 | hace 3 años, 8 meses | |
Displaying a view of related posts of a related post
Iniciado por: stuart
en: Toolset Professional Support
Problem: Solution: |
|
2 | 3 | hace 3 años, 8 meses | |
legacy views and maps documentation
Iniciado por: stuart en: Toolset Professional Support |
|
2 | 4 | hace 3 años, 8 meses | |
Calendar view update
Iniciado por: stuart en: Toolset Professional Support |
|
2 | 3 | hace 3 años, 9 meses | |
Access Control Group Content tempalte redirect – with Custom post Type & Plugin
Iniciado por: stuart en: Toolset Professional Support |
|
2 | 5 | hace 3 años, 10 meses | |
in Toolsets posts
Iniciado por: stuart en: Toolset Professional Support |
|
2 | 2 | hace 3 años, 10 meses |