http://novelist.maximfactory.com/want/
Comments are not working on Posts.
I have allow comments selected but the comments are not showing up.
What am I missing?
Thanks.
Update:
I found out what is causing the issue, how do I fix it?
I added this to the Child Theme Functions.php so I can have the Builder capability in a post, what can I change on this code so I get the post comments function back?
Code added:
add_filter(‘avf_builder_boxes’,’enable_boxes_on_posts’);
function enable_boxes_on_posts($boxes) {
$boxes[] = array( ‘title’ =>__(‘Avia Layout Builder’,’avia_framework’ ), ‘id’=>’avia_builder’, ‘page’=>array(‘portfolio’, ‘page’, ‘post’), ‘context’=>’normal’, ‘expandable’=>true );
$boxes[] = array( ‘title’ =>__(‘Layout’,’avia_framework’ ), ‘id’=>’layout’, ‘page’=>array(‘portfolio’, ‘page’, ‘post’), ‘context’=>’side’, ‘priority’=>’low’);
$boxes[] = array( ‘title’ =>__(‘Additional Portfolio Settings’,’avia_framework’ ), ‘id’=>’preview’, ‘page’=>array(‘portfolio’, ‘page’, ‘post’), ‘context’=>’normal’, ‘priority’=>’high’ );
return $boxes;
}
Thanks for your help!!
Hi!
In the advanced layout builder drag the comments element to your content to display comments.
Best regards,
Elliott
Wow, you have got to be kidding me…. that was so easy, dugh.
I have never used the Comments element before, I though it was to place comments in the body of your content if you choose to.
Thanks for the help!!