MikeS1622
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 |
---|---|---|---|---|---|
Contact the post author
Started by: MikeS1622
in: Toolset Professional Support
Problem: I have an automatic email notification set up in a post Form. I would like to send an email to the author of the post where the Form is being displayed. Solution: Use a generic field in the Form to store the ID of the author of the current post, then you can select that generic field in the notification recipients details. Relevant Documentation: |
2 | 13 | 3 years, 4 months ago | ||
Can I stop the password field prefilling on an edit user form?
Started by: MikeS1622 in: Toolset Professional Support |
2 | 8 | 3 years, 6 months ago | ||
Default value in repeated fields
Started by: MikeS1622 in: Toolset Professional Support |
3 | 7 | 3 years, 7 months ago | ||
Repeating Groups
1
2
Started by: MikeS1622 in: Toolset Professional Support |
2 | 18 | 3 years, 7 months ago | ||
Adding a repeatable group to post forms
Started by: MikeS1622 in: Toolset Professional Support |
2 | 6 | 3 years, 8 months ago | ||
How do I stop members to have any access to the back-end?
Started by: MikeS1622
in: Toolset Professional Support
Problem: Solution: |
2 | 3 | 3 years, 9 months ago | ||
Can Toolset be used to make conventional contact forms?
Started by: MikeS1622
in: Toolset Professional Support
Problem: Solution: To create a content Us form using Toolset, you should create a post type "Contacts" as well as add the custom fields as required to display with the Contacts post type and then create a post for to add new post for that "Contacts" post type. You can find the proposed solution in this case with the following reply: Relevant Documentation: |
2 | 3 | 3 years, 9 months ago | ||
Disable the marker title that appears on hover
Started by: MikeS1622
in: Toolset Professional Support
Problem: Solution: jQuery('.wpv-addon-maps-marker').attr('data-markertitle', '') |
2 | 3 | 3 years, 9 months ago | ||
Map of user locations
Started by: MikeS1622 in: Toolset Professional Support |
2 | 11 | 3 years, 9 months ago | ||
Front-end form taxonomy descriptions
Started by: MikeS1622
in: Toolset Professional Support
Problem: I would like to display the description field from my taxonomy next to the taxonomy input in a Form. Solution: The wpv-taxonomy-archive shortcode can be used in a taxonomy archive, but a custom shortcode is required to display a taxonomy description outside of a taxonomy archive. Example: // Get the description of any taxonomy, for use anywhere // ex: [tssupp-get-tax-desc taxonomy="your-tax-slug"][/tssupp-get-tax-desc] // https://toolset.com/forums/topic/front-end-form-taxonomy-descriptions/ add_shortcode( 'tssupp-get-tax-desc', 'tssupp_get_tax_desc'); function tssupp_get_tax_desc($atts) { $atts = shortcode_atts( array( 'taxonomy' => '' ), $atts ); $taxes = get_option('wpcf-custom-taxonomies'); $description = isset($taxes[$atts['taxonomy']]['description']) ? $taxes[$atts['taxonomy']]['description'] : ''; return $description; } Use it like this: [tssupp-get-tax-desc taxonomy="your-tax-slug"][/tssupp-get-tax-desc] Replace your-tax-slug with the slug of the taxonomy whose description you would like to display in the Form. Relevant Documentation: |
2 | 5 | 3 years, 9 months ago | ||
Front-end form field descriptions
Started by: MikeS1622
in: Toolset Professional Support
Problem: Solution: |
2 | 9 | 3 years, 9 months ago | ||
Post Form conditional group logic based on selected taxonomy term
Started by: MikeS1622
in: Toolset Professional Support
Problem: I would like to use a conditional group in my post Form. The conditional should test whether or not a specific term from a custom taxonomy is selected, but I cannot figure out how to set up this conditional. Solution: Manually edit the conditions for this conditional group and use the following syntax in the editor: ($(tax-slug) eq 'Term name') Replace tax-slug with the slug of the custom taxonomy, and replace Term name with the name of the term to test. Relevant Documentation: |
2 | 9 | 3 years, 10 months ago |