culturaI
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 |
---|---|---|---|---|---|
convert relationship one-to-many to many-to-many safely
Started by: culturaI in: Toolset Professional Support |
2 | 4 | 1 year, 5 months ago | ||
remove date from datepicker in a cred form
Started by: culturaI
in: Toolset Professional Support
Problem: I have a cred form with a toolset field (type date, only date) wpcf-starting-date. I would like to remove the possibility to select a certain date (3 January 2022). Solution: You can try below custom JS codes: https://toolset.com/forums/topic/remove-date-from-datepicker-in-a-cred-form/#post-2243967 Relevant Documentation: |
2 | 3 | 3 years ago | ||
Views submit button on amp pages
Started by: culturaI in: Toolset Professional Support |
3 | 9 | 4 years, 4 months ago | ||
Add url parameter on views submit using php
Started by: culturaI in: Toolset Professional Support |
2 | 8 | 4 years, 4 months ago | ||
Add url parameter on views submit
Started by: culturaI in: Toolset Professional Support |
2 | 3 | 4 years, 6 months ago | ||
Toolset blocks 1.1.1 and view not working correctly in a content template
Started by: culturaI in: Toolset Professional Support |
2 | 12 | 4 years, 10 months ago | ||
translate toolset select field in a filter
Started by: culturaI in: Toolset Professional Support |
1 | 2 | 4 years, 11 months ago | ||
Change query filter in a views set by toolset block
Started by: culturaI in: Toolset Professional Support |
2 | 3 | 4 years, 11 months ago | ||
Filter Repeteable group fields by url parameter of parent post
Started by: culturaI in: Toolset Professional Support |
2 | 2 | 4 years, 11 months ago | ||
Bootstrap 4 and breaking lines not working
Started by: culturaI in: Toolset Professional Support |
2 | 2 | 5 years, 4 months ago | ||
set view default value if views is not set
Started by: culturaI
in: Toolset Professional Support
Problem: Solution: An example of such code that needs editing for your site appears below: https://toolset.com/forums/topic/set-view-default-value-if-views-is-not-set/#post-1314497 Relevant Documentation: |
2 | 5 | 5 years, 4 months ago | ||
Set up a View that list date field birthday
Started by: culturaI
in: Toolset Professional Support
Problem: Solution: add_filter( 'posts_where' , 'func_filter_birtdate_posts'); function func_filter_birtdate_posts( $where ) { global $WP_Views; global $wpdb; if($WP_Views->current_view == 9999){ $where .= " And ".$wpdb->prefix."posts.ID IN (SELECT post_id FROM ".$wpdb->prefix."postmeta WHERE (".$wpdb->prefix."postmeta.post_id = ".$wpdb->prefix."posts.ID) AND ".$wpdb->prefix."postmeta.meta_key = 'wpcf-data-di-nascita' AND month(FROM_UNIXTIME(".$wpdb->prefix."postmeta.meta_value)) = month(now()) AND day(FROM_UNIXTIME(".$wpdb->prefix."postmeta.meta_value)) = day(now()) )"; } return $where; } Where: You can find the proposed solution in this case with the following reply: Relevant Documentation: |
2 | 5 | 5 years, 6 months ago | ||
display repeteable fields group in a vertical grid
Started by: culturaI
in: Toolset Professional Support
Problem: Solution: |
2 | 7 | 5 years, 8 months ago | ||
Filter Repeteable group fields using views
Started by: culturaI
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case with the following reply: Relevant Documentation: |
2 | 4 | 5 years, 9 months ago | ||
HOOK before_delete_post AND toolset_get_related_post
Started by: culturaI in: Toolset Professional Support |
2 | 7 | 5 years, 10 months ago |