acts-1224C
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 |
---|---|---|---|---|---|
Submit iframe code in Forms
Started by: acts-1224C
in: Toolset Professional Support
Problem: I would like to add an HTML iframe tag to a custom field when editing a post in a front-end Form, but the content does not seem to be saved. If I add the same code in wp-admin when editing a post, it is saved as expected. Solution: For security purposes, Forms automatically restricts certain code. To override that security feature, you must enable iframe tags with custom code. Add the following custom code in your child theme's functions.php file: add_filter( 'wp_kses_allowed_html', 'tssupp_author_cap_filter',1,1 ); function tssupp_author_cap_filter( $allowedposttags ) { if ( !current_user_can( 'publish_posts' ) ) return $allowedposttags; // Here add tags and attributes you want to allow $allowedposttags['iframe']=array( 'align' => true, 'width' => true, 'height' => true, 'frameborder' => true, 'name' => true, 'src' => true, 'id' => true, 'class' => true, 'style' => true, 'scrolling' => true, 'marginwidth' => true, 'marginheight' => true, ); return $allowedposttags; } That should cover most of the default iframe attributes for a Google Calendar embed, but you may need to adjust this code to support other non-default attributes individually. Go to Toolset > Settings > Forms and click "Select allowed HTML tags". Choose all the tags you would like to allow Users to insert in a Form, including iframe tags. |
2 | 4 | 3 years, 9 months ago | ||
Types Plugin
Started by: acts-1224C in: Toolset Professional Support |
2 | 4 | 3 years, 9 months ago | ||
blocks are not showing in the website page editor.
Started by: acts-1224C in: Toolset Professional Support |
3 | 16 | 3 years, 11 months ago | ||
Cannot get Message Module to work when creating new posts
Started by: acts-1224C in: Toolset Professional Support |
2 | 2 | 3 years, 12 months ago | ||
cred forms-default sign in form
Started by: acts-1224C in: Toolset Professional Support |
2 | 2 | 4 years, 1 month ago | ||
documentation for the messaging system
Started by: acts-1224C in: Toolset Professional Support |
2 | 5 | 4 years, 1 month ago | ||
Naming Child Posts Genereation
Started by: acts-1224C in: Toolset Professional Support |
2 | 2 | 4 years, 2 months ago | ||
display list of all users
Started by: acts-1224C
in: Toolset Professional Support
Problem: I have a membership site with 2000+ signed up members with which I need to have to create a list of users and if possible their role. Solution: You can try these: https://toolset.com/forums/topic/display-list-of-all-users/#post-1622297 Relevant Documentation: |
2 | 5 | 4 years, 6 months ago | ||
pop up does not work
Started by: acts-1224C
in: Toolset Professional Support
Problem: Setup popup modal window and display a Toolset Form. Solution: It does not need other plugins, you can try Bootstrap modal. To enable Bootstrap in your website, you can try this: Dashboard-> Toolset-> Settings-> General, in section "Bootstrap loading", enable option "Toolset should load Bootstrap 4" Relevant Documentation: |
2 | 7 | 4 years, 6 months ago | ||
messaging system with toolset
Started by: acts-1224C in: Toolset Professional Support |
2 | 2 | 4 years, 8 months ago | ||
taxonomy
Started by: acts-1224C in: Toolset Professional Support |
2 | 4 | 4 years, 10 months ago | ||
woocommerce
Started by: acts-1224C in: Toolset Professional Support |
2 | 2 | 4 years, 12 months ago | ||
auto numbering
Started by: acts-1224C in: Toolset Professional Support |
2 | 2 | 5 years ago | ||
membership site
Started by: acts-1224C in: Toolset Professional Support |
2 | 2 | 5 years, 1 month ago | ||
Formatting Table output from the loop with the block editor
Started by: acts-1224C in: Toolset Professional Support |
2 | 2 | 5 years, 2 months ago |