Adrian
Fils de soutien créés au cours des 30 derniers jours : 0
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
Status | Sujet | Supporter | Voix | Publications | Nouveauté |
---|---|---|---|---|---|
Only load Toolset Maps scripts when needed
Commencé par : 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 | Il y a 6 années et 9 mois | ||
Unlock content
Commencé par : Adrian in: Toolset Professional Support |
2 | 5 | Il y a 6 années et 9 mois | ||
Call View via Ajax
Commencé par : Adrian in: Toolset Professional Support |
1 | 2 | Il y a 6 années et 9 mois | ||
Call Javascript after ajax filter
Commencé par : Adrian
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 3 | Il y a 6 années et 9 mois | ||
Bulk adding checkboxes
Commencé par : 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 | Il y a 6 années et 9 mois | ||
WPV If Statements broken and conditional logic not firing
Commencé par : Adrian in: Toolset Professional Support |
2 | 3 | Il y a 6 années et 11 mois | ||
Trying to get the primary category
Commencé par : Adrian in: Toolset Professional Support |
2 | 3 | Il y a 6 années et 11 mois | ||
The map is displaying twice
Commencé par : Adrian in: Toolset Professional Support |
1 | 2 | Il y a 7 années | ||
Toolset not defined – Conflict with Visual Composer
Commencé par : Adrian
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 9 | Il y a 7 années | ||
Views inserts weird shortcodes
Commencé par : Adrian in: Toolset Professional Support |
2 | 5 | Il y a 7 années | ||
Last Views Update broke WP Admin
Commencé par : Adrian in: Toolset Professional Support |
3 | 4 | Il y a 7 années et 1 mois | ||
Filters not working
Commencé par : Adrian in: Toolset Professional Support |
2 | 7 | Il y a 7 années et 2 mois | ||
Calculating Values based on custom fields
Commencé par : Adrian in: Toolset Professional Support |
2 | 5 | Il y a 7 années et 2 mois | ||
Specify post parent in a form
Commencé par : 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 | Il y a 7 années et 2 mois | ||
Display Post Date minus one year
Commencé par : 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 | Il y a 7 années et 3 mois |