Hello wordpress developers.
I have created a plugin that allows me to insert content on a page by using a shortcode, the content is rather long since it is an list of data. When editing the page with elementor, i get "duplicate" view since it shows an "preview" of the content from the shortcode above the editor.
Is there any way to disable the preview, either from the code or the backend? From the plugin, i make the shortcode available like this:
add_shortcode('apartmentList', function() {
include 'ApartmentLists/ApartmentListOne.php';
});