Hello, I've created a special login for author users to post and edit "Instituciones" custom post types from the frontend with Toolset Forms.
The problem is when they save the post after creating or editing it and the input for the label "Google Maps iFrame" is not saving the content.
But when creating or editing it form the backend as administrator is working fine.
The input is a multiple line type and the content should be the html code of Google Maps to share a map as an iFrame.
Hi,
Thank you for contacting us and I'd be happy to assist.
To be able to test and troubleshoot this on my own website, I'll need to see how the custom field and the form are set up in the admin area.
Can you please share temporary admin login details, along with the link to the page with the form?
Note: Your next reply will be private and though no changes will be made on your website, please make a complete backup copy, before sharing the access details.
regards,
Waqar
Thank you for sharing the admin access.
During testing on my own website, I was able to confirm that iframe tags are stripped from the Toolset Forms, regardless of the user role.
To allow this tag, you can follow these steps:
1. The code snippet below can be included through either Toolset's custom code feature ( ref: https://toolset.com/documentation/adding-custom-code/using-toolset-to-add-custom-code/ ) or through active theme's "functions.php" file.
add_filter( 'wp_kses_allowed_html', 'esw_author_cap_filter',1,1 );
function esw_author_cap_filter( $allowedposttags ) {
//Here put your conditions, depending on your context
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;
}
2. From Toolset -> Settings -> Form, select the "iframe" tag from the "Content Filter" section, as the allowed HTML tag.
I hope this helps and please let me know if you need any further assistance around this.
Thanks for your answer! I tryied both ways but is not working, I receibe this messagges:
Toolset Custom Code: There was an error when updating snippets.
Functions.php of current theme: Something went wrong. Your change may not have been saved. Please try again. There is also a chance that you may need to manually fix and upload the file over FTP.
Thanks for the update.
It is strange that this works on my test website, but not on yours.
Would it be possible for you to share a clone/snapshot of your website, as explained in this guide?
https://toolset.com/faq/provide-supporters-copy-site/
This will allow me to troubleshoot this in more depth on my own server.
Note: Your next reply will be private.
Thank you for sharing the backup.
I'll be performing some tests on this clone on my own server and will update you with my findings, as soon as this testing completes.
Thank you for waiting.
I've performed some tests on your website's clone and was able to save the iframe code in the field as expected, using the same steps that I shared earlier.
1. At the bottom of the Jupiter theme's "functions.php" file, I added the code snippet from step 1.
Screenshot: enlace oculto
Important note: If you're not able to edit the functions.php file through the WordPress built-in theme editor, you can use FTP access or your host's file manager tool.
2. After that, "iframe" option became available in the "Select allowed HTML tags" section at WP Admin -> Toolset -> Settings -> Forms and I enabled and saved the settings.
Screenshot 1: enlace oculto
Screenshot 2: enlace oculto
I hope this helps and please let me know how it goes.