Home>Support>Vantage Comments rendering/customizations

Vantage Comments rendering/customizations

Hi,

The comments area on blog posts doesn’t look great and I’d like to tidy it up and make some modifications. Can someone please guide me through that?

I would like like to (please refer to image: http://moomooforex.com/wp-content/uploads/2014/12/Comments.png)
– Change Leave a Reply to something else
– Remove the “Comment” and whitespace on the left beside the text box and have the text box fill up the width.
– Remove the fine text about HTML tags and attributes
– Change the layout of the subscription textboxes so the text doesn’t wrap and also they are vertically closer together. It doesn’t look very professional at the moment.

Thanks!
MooMooFX

URL: http://moomooforex.com/wp-content/uploads/2014/12/Comments.png

This is our free support forum. Replies can take several days. If you need fast email support, please purchase a SiteOrigin Premium license.

  1. 9 years, 9 months ago Andrew Misplon
    Hi, I Work Here

    Hi MooMoo Forex

    Thanks for running Vantage.

    We don’t offer customisation services as part of normal support. We do however try help out where possible.

    1. Unfortunately not an easy change. You’d need to use a child theme: https://codex.wordpress.org/Child_Themes. Copy comments.php into your child theme. On line 61 is:

    <?php comment_form(); ?>
    

    You’d need to add arguments to that function as outlined here: http://codex.wordpress.org/Function_Reference/comment_form.

    Line 61 would land up looking something like this:

    	<?php
    
    		$comments_args = array(
            // change the title of the reply section
            'title_reply'=>'Write a Reply or Comment',
    
    		comment_form($comments_args);
    	 
    	 ?>
    

    2. Insert the following under Appearance > Custom CSS:

    /* Comments */
    
    #commentform label[for="comment"] { display: none; }
    #commentform textarea { width: 100%; }
    

    3. Insert the following under Appearance > Custom CSS:

    /* Vantage hide allowed comment form tags */
    
    #commentform .form-allowed-tags, #commentform .form-allowed-tags code, #commentform .comment-notes {
    display: none;
    }
    

    4. Unfortunately Vantage is missing Jetpack styling for this element. Try the following under Appearance > Custom CSS:

    /* Vantage Jetpack Subscription Form */
    
    p.comment-subscription-form {
      margin-bottom: 10px !important; 
    }
    p.comment-subscription-form input[type="checkbox"] {
      float: none !important;
      font-size: 1em;
      line-height: 1.92857em; }
    p.comment-subscription-form label.subscribe-label {
      font-size: 1em;
      float: none !important;
      line-height: 1.92857em;
      font-weight: normal;
      margin: 0 !important;
      padding-left: 10px;
      width: auto !important;
    }
    #commentform p.form-submit { 
      margin-bottom: 2em;
    }
    
  2. 9 years, 9 months ago MooMoo Forex

    Thanks for the help. I’ll give it a go.

    One thing though, I had to disable Jetpack Comments since it appears to clash with Antispam Bee… does this change things? The Jetpack Comments looked good which is kind of what I am trying to recreate.

    Thanks,
    MooMooForex

  3. 9 years, 9 months ago Andrew Misplon
    Hi, I Work Here

    For sure.

    Jetpack Comments would solve your problem in terms of getting a nicer look. But no, this doesn’t change anything. The Jetpack CSS I sent is for the two checkboxes under the comment form, those are from the Jetpack Subscription module.

    You could try using Akismet in place of Antispam Bee, assuming that plugin is for comment form spam.

  4. 9 years, 9 months ago MooMoo Forex

    Andrew,

    Thank you very much. You are a champion. I have done points 2-4, and I’ll give the child theme a crack next week.

    Much appreciated.

    Regards,
    MooMooForex

  5. 9 years, 9 months ago Andrew Misplon
    Hi, I Work Here

    For sure. I can jump in next week and help out if you run into problems.

Replies on this thread are closed. Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Get The Most Out of SiteOrigin with SiteOrigin Premium

Find Out More