Hi Jason,
Thanks for writing back.
The Elementor's "Post Content" widget, shows the content that is saved in the content area.
( screenshot: hidden link )
Since your website's template is using a different field "Event Details" to show the same content, it is shown twice on the single event pages.
To hide the new "Post Content" section when viewing the single event post, show the edit form when the edit link is clicked and also hide the content and the featured image section while editing the form, I'll suggest following steps:
1. Please open your "Single Event" template for editing.
( hidden link )
2. Edit the section that you've added for the "Post Content" widget and add class name single-edit-form-container in it's "CSS Classes" field, as shown in this screenshot:
hidden link
3. Repeat the same for your section for the featured image and the content, to add class name single-edit-content-container, as shown in this screenshot:
hidden link
4. In this template's global settings, add following custom CSS code to hide the new post content section, while the single event posts are just being viewed.
( screenshot: hidden link )
.elementor-inner .elementor-section-wrap .single-edit-form-container {
display: none;
}
5. As the last step, open your Toolset content template "Edit Events Template" ( hidden link ), which includes the shortcode to load the edit form and include the following custom CSS code into the "CSS editor" tab, to hide the featured image and content section and only show the editing form, when the edit link is clicked:
( screenshot: hidden link )
.elementor-inner .elementor-section-wrap .single-edit-content-container {
display: none !important;
}
.elementor-inner .elementor-section-wrap .single-edit-form-container {
display: block !important;
}
Let me know how it goes and if you have a question around any of these steps.
regards,
Waqar