patrickM-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 |
---|---|---|---|---|---|
Filtering by URL parameter returns all records when url parameter is missing
Started by: patrickM-3 in: Toolset Professional Support |
2 | 2 | 4 years, 4 months ago | ||
Reveal particular products when correct code is entered
Started by: patrickM-3 in: Toolset Professional Support |
3 | 12 | 4 years, 4 months ago | ||
Split: Split: How to validate specific email domain with forms and email domain post type
Started by: patrickM-3 in: Toolset Professional Support |
2 | 2 | 5 years ago | ||
shortcode for Toolset View not rendering in LayerSlider slide
Started by: patrickM-3 in: Toolset Professional Support |
2 | 4 | 5 years, 1 month ago | ||
Cred post forms not rendering in Safari
Started by: patrickM-3 in: Toolset Professional Support |
2 | 2 | 5 years, 3 months ago | ||
New Post Notification Emails are not functioning
1
2
3
Started by: patrickM-3 in: Toolset Professional Support |
4 | 42 | 5 years, 5 months ago | ||
Site key not working – unable to update plugins
Started by: patrickM-3 in: Toolset Professional Support |
2 | 4 | 5 years, 6 months ago | ||
Notification Emails are buggy.
Started by: patrickM-3 in: Toolset Professional Support |
3 | 8 | 5 years, 6 months ago | ||
Need to validate unique values in post field
Started by: patrickM-3 in: Toolset Professional Support |
2 | 5 | 5 years, 9 months ago | ||
File Upload Works in Safari but not in Chrome
Started by: patrickM-3 in: Toolset Professional Support |
2 | 4 | 5 years, 9 months ago | ||
Split: How to validate specific email domain with forms
Started by: patrickM-3
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 5 | 5 years, 9 months ago | ||
Adding unique widget script to each custom post
Started by: patrickM-3
in: Toolset Professional Support
Problem: I would like to display a JavaScript widget on the single post page for my custom post type. Each post will have a unique script tag, so I would like to store that in a custom field. I have created a post template with Elementor for this custom post type, and I would like to inject the script from the custom field into the single post template. Solution: You can use a custom shortcode to generate the script tag, then place that custom shortcode in your Elementor template. function ts_show_widget( $atts ) { global $post; $field_slug = 'unique-string'; // replace this with the slug of your custom field $atts = shortcode_atts([ 'postid' => isset($post->ID) ? $post->ID : 0 ], $atts); $field = types_render_field($field_slug, array( 'item'=>$atts['postid'], 'output'=>'raw')); $script = "<script>console.log('Unique string: " . $field . "');</script>"; // update your script here return $script; } add_shortcode( 'ts-show-widget', 'ts_show_widget' ); |
2 | 10 | 5 years, 9 months ago | ||
Toolset templates not working
Started by: patrickM-3 in: Toolset Professional Support |
2 | 7 | 5 years, 10 months ago | ||
automatically linking child posts during WP-AllImport Pro
Started by: patrickM-3 in: Toolset Professional Support |
3 | 7 | 7 years ago | ||
Need to replace Google Site Search
Started by: patrickM-3
in: Toolset Professional Support
Problem: Solution: $args = array( 'title' => 'My View name', ); echo render_view( $args ); Relevant Documentation: |
2 | 4 | 7 years ago |