I haven’t been able to solve this myself yet.
Could you guide me in finding ways to style Enfold’s comment section?
Thanks again!
Hi,
Thank you for usign Enfold.
Please add the following filter in the functions.php file if you want to render the comment form on every page created with the advance layout builder.
add_filter('avf_template_builder_content', 'avf_template_builder_content_mod', 10, 1);
function avf_template_builder_content_mod($content) {
if(!single()) return;
$comment = do_shortcode("[av_one_full first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_breaking='' mobile_display=''][av_comments_list av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide=''][/av_one_full]");
$content = $content . $comment;
return $content;
}
Best regards,
Ismael