jozsefG
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Can't have multiple levels of hierarchy
Started by: jozsefG in: Toolset Professional Support |
1 | 1 | 5 years, 11 months ago | ||
Woocommerce archives
Started by: jozsefG in: Toolset Professional Support |
2 | 2 | 5 years, 11 months ago | ||
frontend date filters
Started by: jozsefG in: Toolset Professional Support |
2 | 6 | 6 years ago | ||
Content template not loading for non-native post type
Started by: jozsefG in: Toolset Professional Support |
1 | 3 | 6 years, 2 months ago | ||
views bug in Divi – kills column layout
Started by: jozsefG
in: Toolset Professional Support
Problem: The Divi builder grid system is broken when I insert a View. Solution: Check the View for unclosed div elements, and close them. Relevant Documentation: |
2 | 3 | 6 years, 2 months ago | ||
Display link to parent term
Started by: jozsefG
in: Toolset Professional Support
Problem:
Solution: 2. I solved the back to parent button problem too with this solution: Relevant Documentation: |
2 | 7 | 6 years, 3 months ago | ||
Content submission form stopped working
Started by: jozsefG in: Toolset Professional Support |
2 | 5 | 6 years, 4 months ago | ||
Query filter for showing events for the next 30 days
Started by: jozsefG
in: Toolset Professional Support
Problem: Filter the view by a custom date field: Solution: You just need to setup a custom field filter on field "srow", for example: Select items with field: Relevant Documentation: |
2 | 5 | 6 years, 5 months ago | ||
Different spiderfy marker icon
Started by: jozsefG
in: Toolset Professional Support
Problem: Solution: We would have custom markers, then hover markers, and if we add spiderfy markers, it's a quite complex UI to use. Hence, we decided to see how much impact this would have if implemented. |
3 | 6 | 6 years, 6 months ago | ||
Different marker images based on taxonomy
1
2
Started by: jozsefG
in: Toolset Professional Support
Problem: The issue here is that the user wanted to use a different marker based on the Taxonomy of the post. Solution: This can be done by using our Conditional shortcode. An example can be seen below. [wpv-conditional if="(has_term('bemutatok', 'event_type', null) eq '1')"] [wpv-map-marker map_id="map-3" marker_icon="https://varadielet.ro/wp-content/uploads/2018/07/bemutato-pin.png" marker_id='marker-[wpv-post-id]-[wpv-attribute name="eid"]' marker_field="wpcf-lokacio" marker_title=" "][wpv-post-link id='[wpv-attribute name="eid"]']<br />Dátum: [convert_date post_field='evcal_srow' post_id='[wpv-attribute name="eid"]' marker_icon='[wpv-post-body view_template="event-marker-image"]']<br />Hely: [wpv-post-link][/wpv-map-marker] [/wpv-conditional] What is being down here is that you will need to have a different conditional for each taxonomy term and then switching the markers in each conditional. Since has_term is a custom function you will need to add it to the views custom functions in Toolset->Settings->Frontend |
2 | 29 | 6 years, 6 months ago | ||
convert non-types date field timestamp to date
Started by: jozsefG
in: Toolset Professional Support
Problem: The issue here is that the user has a timestamp stored in a custom field. Solution: To do this you will need to add this custom shortcode to your functions.php file. // Add Shortcode function convert_date( $atts ) { // Attributes $atts = shortcode_atts( array( 'post_field' => '', 'post_id'=> '', ), $atts ); $field_value = get_post_meta($atts['post_id'],$atts['post_field']); $date = date('F j, Y, g:i a', $field_value[0]); return $date; } add_shortcode( 'convert_date', 'convert_date' ); Then you use this shortcode by doing the following. [convert_date post_field='evcal_srow' post_id='12'] Now the shortcode takes 2 parameters, the name of the field and the id of the post. |
4 | 12 | 6 years, 6 months ago | ||
Show markers set in linked post type
Started by: jozsefG in: Toolset Professional Support |
2 | 13 | 6 years, 7 months ago | ||
showing markers of events on map, address is in another post type
Started by: jozsefG in: Toolset Professional Support |
1 | 2 | 6 years, 7 months ago |