larryB-3
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
Status | Debate | Supporter | Voces | Mensajes | Caducidad |
---|---|---|---|---|---|
How to display intermediary post type in admin menu
Iniciado por: larryB-3
en: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 9 | hace 6 años, 5 meses | ||
Is there a way to default repeating fields as expanded instead of collapsed?
Iniciado por: larryB-3 en: Toolset Professional Support |
2 | 5 | hace 6 años, 5 meses | ||
Split: Count the number of search results returned – pagination showing wrong numbers
Iniciado por: larryB-3
en: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 5 | hace 6 años, 5 meses | ||
Count the number of search results returned
Iniciado por: larryB-3
en: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 5 | hace 6 años, 5 meses | ||
Need shortcode to view the user that last modified a post
Iniciado por: larryB-3
en: 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 | hace 6 años, 6 meses | ||
Release Candidate Bug – Not Saving Value
Iniciado por: larryB-3
en: Toolset Professional Support
Problem: Solution: |
2 | 4 | hace 6 años, 6 meses | ||
How to create view as a table for repeating fields like phone numbers and email
Iniciado por: larryB-3
en: 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 | hace 6 años, 6 meses | ||
How to Filter a View with a value from an Intermediary post type Custom Field
Iniciado por: larryB-3 en: Toolset Professional Support |
3 | 6 | hace 6 años, 6 meses | ||
How to display Intermediary post type Custom Fields
Iniciado por: larryB-3
en: 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 | hace 6 años, 6 meses | ||
Can this be done? Sync fields from a CPT to MailChimp subscriber list and back
Iniciado por: larryB-3
en: 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 | hace 6 años, 8 meses | ||
Map shows on back-end but doesn’t render on front-end
Iniciado por: larryB-3
en: 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 | hace 6 años, 9 meses | ||
Auto-generate Post Title from custom field values
Iniciado por: larryB-3
en: 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 | hace 6 años, 9 meses | ||
Ability to create new child posts during the creation of a parent post in CRED
Iniciado por: larryB-3
en: 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 | hace 6 años, 9 meses | ||
Custom Post Type title field of Parent needed for use in Essential Grid
Iniciado por: larryB-3 en: Toolset Professional Support |
2 | 3 | hace 7 años, 3 meses |