Adrian
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 |
---|---|---|---|---|---|
Only load Toolset Maps scripts when needed
Started by: Adrian
in: Toolset Professional Support
Problem: Solution: W keep upvoting requests as eventually in future we still can revisit them if the votes reach a considerable amount or else happens. |
3 | 9 | 6 years, 8 months ago | ||
Unlock content
Started by: Adrian in: Toolset Professional Support |
2 | 5 | 6 years, 8 months ago | ||
Call View via Ajax
Started by: Adrian in: Toolset Professional Support |
1 | 2 | 6 years, 9 months ago | ||
Call Javascript after ajax filter
Started by: Adrian
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 3 | 6 years, 9 months ago | ||
Bulk adding checkboxes
Started by: Adrian
in: Toolset Professional Support
Problem: If you want to duplicate the checkbox field in different Custom Post type, then you can do is create a new group and then add Fields that "already exist". This is an option when you start to add fields to the Group. |
2 | 3 | 6 years, 9 months ago | ||
WPV If Statements broken and conditional logic not firing
Started by: Adrian in: Toolset Professional Support |
2 | 3 | 6 years, 10 months ago | ||
Trying to get the primary category
Started by: Adrian in: Toolset Professional Support |
2 | 3 | 6 years, 11 months ago | ||
The map is displaying twice
Started by: Adrian in: Toolset Professional Support |
1 | 2 | 6 years, 11 months ago | ||
Toolset not defined – Conflict with Visual Composer
Started by: Adrian
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 9 | 7 years ago | ||
Views inserts weird shortcodes
Started by: Adrian in: Toolset Professional Support |
2 | 5 | 7 years ago | ||
Last Views Update broke WP Admin
Started by: Adrian in: Toolset Professional Support |
3 | 4 | 7 years ago | ||
Filters not working
Started by: Adrian in: Toolset Professional Support |
2 | 7 | 7 years, 1 month ago | ||
Calculating Values based on custom fields
Started by: Adrian in: Toolset Professional Support |
2 | 5 | 7 years, 2 months ago | ||
Specify post parent in a form
Started by: Adrian
in: Toolset Professional Support
Problem: I would like to use Gravity Forms to create a child post, and I would like to know how to associate that child with a parent post. Solution: To associate a parent post with a child post, you can use the update_post_meta function with the _wpcf_belongs_business_id meta key: update_post_meta( 456, '_wpcf_belongs_business_id', 123 ); Change 456 to the child post's ID, change 123 to the parent post's ID. Relevant Documentation: https://codex.wordpress.org/Function_Reference/update_post_meta |
2 | 4 | 7 years, 2 months ago | ||
Display Post Date minus one year
Started by: Adrian
in: Toolset Professional Support
Problem: Solution: add_shortcode('past_year_date', 'get_past_year_date_fun'); function get_past_year_date_fun( $atts ) { // Attributes extract(shortcode_atts( array( 'date' => '', 'format' => 'M d, Y' ), $atts )); $past_date = strtotime("$date -1 year"); $date = date($format, $past_date); return $date; } 2. Then use following shortcode for display past year date: Current Date: [wpv-post-date] Past Year Date: [past_year_date date="[wpv-post-date]" format="M d, Y"] |
2 | 6 | 7 years, 2 months ago |