Florian
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 |
---|---|---|---|---|---|
View in Loop Editor by url params only works without trailing slash
Started by: Florian in: Toolset Professional Support |
2 | 2 | 1 year, 8 months ago | ||
Get name of parent page for translations
Started by: Florian in: Toolset Professional Support |
2 | 14 | 2 years, 1 month ago | ||
Need to auto-populate an field by a second field
Started by: Florian
in: Toolset Professional Support
Problem: I have two custom fields in a post type. When a Form is submitted to create posts, I would like to automatically populate one of the custom fields using information from the other custom field to generate an HTML link tag. Solution: Use the cred_save_data hook to trigger your own custom code when a Form is submitted. add_action('cred_save_data', 'tssupp_autopopulate_html',10,2); function tssupp_autopopulate_html($post_id, $form_data) { $forms = array( 123, 456 ); $input_slug = 'your-input-field-slug'; $destination_slug = 'your-destination-field-slug'; // if this hook is fired when submitting any of the forms in $forms if ( in_array( $form_data['id'], $forms ) ) { // if input field has content, build the HTML string and save it in destination field if (isset($_POST['wpcf-' . $input_slug])) { $input = $_POST['wpcf-' . $input_slug]; $content = '<a href="' . $input . '">' . $input . '</a>'; update_post_meta($post_id, 'wpcf-' . $destination_slug, $content); } } } Relevant Documentation: |
3 | 5 | 3 years, 10 months ago | ||
View Filter toggeling
Started by: Florian in: Toolset Professional Support |
2 | 9 | 3 years, 11 months ago | ||
Split: Product price is not showing after search filter is used
Started by: Florian in: Toolset Professional Support |
2 | 6 | 4 years ago | ||
After filtering first product is hidden
1
2
Started by: Florian in: Toolset Professional Support |
2 | 17 | 4 years ago | ||
ViewFilter toggeling
Started by: Florian in: Toolset Professional Support |
2 | 2 | 4 years, 1 month ago | ||
Sorting Options for WooCommerce
Started by: Florian in: Toolset Professional Support |
2 | 4 | 4 years, 1 month ago | ||
No archive for custom taxonomies
Started by: Florian
in: Toolset Professional Support
Problem: The issue here is that the user wanted to disable the archives for their custom taxonomies. Solution: While you are not able to do this with our Toolset Plugins, you should be able to achieve it with the plugin below. |
2 | 3 | 4 years, 6 months ago | ||
Fatal error after update to Toolset Types 3.3.11
Started by: Florian in: Toolset Professional Support |
3 | 9 | 4 years, 7 months ago | ||
Regex Phone Numbers in a view
Started by: Florian in: Toolset Professional Support |
2 | 7 | 4 years, 10 months ago |