Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #836930

    Hi,

    I have a couple questions related to comments on blog posts, which I’m just starting to use with Enfold:

    • For now I’ve been manually adding the comment section (and a horizontal line to separate it from the text) on my blog posts using the layout builder. Is there a ay to make this section automatically appear below my blog posts ?
    • I want to remove the “website” textfield and put the name and email textfields above the comment body textfield. Plus I’d like the textfields to be to the right of the textfield’s names, if that makes sense. Where can I tweak his?
    • I want to change the textfield’s color, which don’t appear on my site as they’re white on a white background. Can I change this in the theme’s general styling options? Which of the many fields relates to this textfield background color?
    • I might want to style some smaller elements : get rid of the circle around the number of answers, align the left of the comments to the left of the article’s text (I’ve disabled avatars), maybe change the text size and font. How can I achieve this in my child theme?

    Thanks in advance for your reply and keep up the great work&great support on this theme !
    Robin

    #839117

    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!

    #839144

    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

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.