I have tried the Edit post link method with content template for adding edit post links Views that list items. Works fine. But what if I wanted to open the edit form in a clean window without the regular theme layout? I have been experimenting with
<a href="/edit-post/?post=[wpv-post-id]" onclick="window.open('/edit-post/?post=[wpv-post-id]', 'edit', 'menubar=no, location=no, toolbar=no, scrollbars=yes, height=300'); return false;">Edit in window</a>
The edit-post page is with
[cred_form form="89223" post="[wpv-search-term param='post']"]
That works apart from there is no styling for editing custom taxonomies (the existing selected taxonomy terms are not displayed either) and no calendar icon for date/time fields.
Since I am using a totally stripped down template for the edit-post page like this below of course some toolset needed code is missing wright? Any easy way to add what Toolset related is needed for the taxonomy and date/time editing to work correctly like with the content template version.
(Just wish to see only what is needed when editing and not loading the whole layout so any other solution to do this is of course also of interest)
<?php
/*
Template Name: Empty Template
Template Post Type: my-custom-post-type
*/
?>
<?php
// Start the loop.
// The post content will get inserted, as written, between the body tags.
while ( have_posts() ) : the_post();
?>
<?php the_content(); ?>
<?php
// End the loop.
endwhile;
?>