larryB-3
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 |
---|---|---|---|---|---|
Release Candidate Bug – Not Saving Value
Started by: larryB-3
in: Toolset Professional Support
Problem: Solution: |
2 | 4 | 6 years, 6 months ago | ||
How to create view as a table for repeating fields like phone numbers and email
Started by: larryB-3
in: Toolset Professional Support
Problem: I have a custom post type "Renter" that includes two Repeating Field Groups (RFGs) "Phone numbers" and "Email addresses". I would like to create a table View that shows all Renters and includes all of their phone numbers and emails as well. Solution: Set up your View of Phone Number RFG with a post relationship filter, set by the current post in the loop (which in your case will be Renter from View 1). Use the Loop Wizard to create an unordered list style View that outputs each phone number item. Insert the View of Phone Number RFGs in the View of Renters Loop Output, nesting the View shortcode in the correct table cell. Set up your View of Email RFG the same way, with a post relationship filter set by the current post in the loop. Relevant Documentation: |
2 | 3 | 6 years, 6 months ago | ||
How to Filter a View with a value from an Intermediary post type Custom Field
Started by: larryB-3 in: Toolset Professional Support |
3 | 6 | 6 years, 6 months ago | ||
How to display Intermediary post type Custom Fields
Started by: larryB-3
in: Toolset Professional Support
Problem: Solution: For example: [types item="@property-homeowner.association" field="status" option="wpcf-fields-radio-option-7fc78a2cbf047b5f9640123a3c54c5c1-1"]Current[/types] Where: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 7 | 6 years, 6 months ago | ||
Can this be done? Sync fields from a CPT to MailChimp subscriber list and back
Started by: larryB-3
in: Types Community Support
Problem: I was wondering if I could sync the data entered into these into MailChimp so that I could use these fields with a MailChimp campaign. Then if a email receipent updated their preferences in MailChimp to edit their phone for example, could I then have this information auto sync'd back to the WordPress CPT that it came from. Solution: There isn't such a built-in feature within Types plugin or other Toolset plugins, but you can search it in google plugin Directory, for example: https://wordpress.org/plugins/search/mailchimp+Sync/ Relevant Documentation: |
2 | 3 | 6 years, 8 months ago | ||
Map shows on back-end but doesn’t render on front-end
Started by: larryB-3
in: Toolset Professional Support
Problem: The issue here is that the customer's map works fine on his backend but on his frontend there is nothing displaying on the map, just a grey area. Solution: |
2 | 5 | 6 years, 9 months ago | ||
Auto-generate Post Title from custom field values
Started by: larryB-3
in: Toolset Professional Support
Problem: Solution: /** * Auto-generate post title */ function tssupp_autogenerate_title( $post_id, $post ){ if ( 'owner' == $post->post_type ) { $first_name = get_post_meta( $post_id, 'wpcf-first-name', true ); $last_name = get_post_meta( $post_id, 'wpcf-last-name', true ); $new_title = $first_name . " " . $last_name; $new_title = sanitize_text_field( $new_title ); $new_slug = sanitize_title( $new_title ); $args = array( 'ID' => $post_id, 'post_title' => $new_title, 'post_name' => $new_slug ); wp_update_post( $args ); } } add_action( 'save_post', 'tssupp_autogenerate_title', 10, 2 ); Relevant Documentation: |
2 | 7 | 6 years, 10 months ago | ||
Ability to create new child posts during the creation of a parent post in CRED
Started by: larryB-3
in: Toolset Professional Support
Problem: Solution: When using Types posts relationships, the parent of a given type is stored in a field: _wpcf_belongs_{parent-posttype-slug}_id You can find proposed solution in this case with the following reply: Relevant Documentation: |
2 | 3 | 6 years, 10 months ago | ||
Custom Post Type title field of Parent needed for use in Essential Grid
Started by: larryB-3 in: Toolset Professional Support |
2 | 3 | 7 years, 3 months ago |