Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author LiveComposer

    (@livecomposer)

    Hi,

    If I understood correctly you want to show the regular content ( the main WordPress content editor ), correct? Just add the “THE CONTENT” module, it outputs that content.

    Unlike pages which are each unique, usually blog posts follow the same layout and use typical text + images in the content of the post, so the “post templates” system was created to allow creation of the template once and it gets applied to all posts, when changing the layout, change the template and all posts are changed.

    But, if you don’t need that and prefer the “each is unique” approach, you could remove the “post templates” system for blog posts using this code:

    function lc_remove_post_templates_support( $cpt ) {
    
    	unset( $cpt['post'] );
    
    	return $cpt;
    
    } add_filter( 'dslc_post_templates_post_types', 'lc_remove_post_templates_support' );

    That goes in your theme’s functions.php file. You can place it at the very end.

    Regards,
    Slobodan

    Plugin Author LiveComposer

    (@livecomposer)

    It’s been a week, I assume this has been resolved.

    Thread Starter jamesdigitalmediateam

    (@jamesdigitalmediateam)

    We’ve decided to stop using LiveComposer as we ran into too many bugs. With each fix, a new error popped up and it was using up too much time.

    Plugin Author LiveComposer

    (@livecomposer)

    Oh, sorry to hear that, LC has been around for over 2 years, so most of the bigger bugs should be resolved. If you have some time please let me know which bugs you ran into and I’ll make sure they’re resolved.

    Regards,
    Slobodan

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘LC Template issue’ is closed to new replies.