larryB-3
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é |
---|---|---|---|---|---|
How to display intermediary post type in admin menu
Commencé par : larryB-3
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 9 | Il y a 6 années et 5 mois | ||
Is there a way to default repeating fields as expanded instead of collapsed?
Commencé par : larryB-3 in: Toolset Professional Support |
2 | 5 | Il y a 6 années et 5 mois | ||
Split: Count the number of search results returned – pagination showing wrong numbers
Commencé par : larryB-3
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 5 | Il y a 6 années et 5 mois | ||
Count the number of search results returned
Commencé par : larryB-3
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 5 | Il y a 6 années et 5 mois | ||
Need shortcode to view the user that last modified a post
Commencé par : larryB-3
in: Toolset Professional Support
Problem: I want to show in my view, the last modified date (I have no problem doing that), but I also want to show what user was the one that last modified the record. What short code would I use in a view to show the Modified by User? Solution: There isn't such a built-in feature within Toolset plugin, it needs some custom PHP codes, for example, add below codes into your theme file functions.php: add_shortcode('the-modified-author', function( $atts = [], $content=null ) { return get_the_modified_author(); }); Then use shortcode [the-modified-author] in your content, and test again. More help: Relevant Documentation: https://codex.wordpress.org/Function_Reference/get_the_modified_author Retrieve the author who last edited the current post. |
2 | 4 | Il y a 6 années et 6 mois | ||
Release Candidate Bug – Not Saving Value
Commencé par : larryB-3
in: Toolset Professional Support
Problem: Solution: |
2 | 4 | Il y a 6 années et 6 mois | ||
How to create view as a table for repeating fields like phone numbers and email
Commencé par : 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 | Il y a 6 années et 6 mois | ||
How to Filter a View with a value from an Intermediary post type Custom Field
Commencé par : larryB-3 in: Toolset Professional Support |
3 | 6 | Il y a 6 années et 6 mois | ||
How to display Intermediary post type Custom Fields
Commencé par : 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 | Il y a 6 années et 6 mois | ||
Can this be done? Sync fields from a CPT to MailChimp subscriber list and back
Commencé par : 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 | Il y a 6 années et 9 mois | ||
Map shows on back-end but doesn’t render on front-end
Commencé par : 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 | Il y a 6 années et 10 mois | ||
Auto-generate Post Title from custom field values
Commencé par : 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 | Il y a 6 années et 10 mois | ||
Ability to create new child posts during the creation of a parent post in CRED
Commencé par : 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 | Il y a 6 années et 10 mois |