Hi There,
Did you already figure this out? For those users who may find this thread. You can add the code below on your child theme’s functions.php file.
/**
Add something in the end of the post
*/
add_action( 'x_before_the_content_end', 'add_to_single_posts' );
function add_to_single_posts() {
if ( is_single() ) {
echo do_shortcode( 'YOUR FORM SHORTCODE HERE' );
}
}
Replace YOUR FORM SHORTCODE HERE with your actual shortcode.
Please feel free to get in touch with us regarding any further queries about the X|Theme and Cornerstone.
Cheers!