Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #1879284
Remove website box from comments
Closed

Comments

  • Capas started the conversation

    How can I remove the website box from the comments section?  I have tried CSS found in other tickets but it does not remove it on the Iphone display.

    Thanks,

    Capas

  •  2,699
    PenciDesign replied

    Hi,

    To do that, please add more this code to Customize > Custom CSS:

    @media only screen and (max-width: 768px){
    #respond p.comment-form-email, #respond p.comment-form-author{ width: 48%; }
    #respond p.comment-form-email{ margin-left: 4%; }
    #respond p.comment-form-url{ display: none; }
    #respond p.comment-form-author input{ max-width: 100%; }
    }

    Best Regards,

    PenciDesign

  • Capas replied

    I put this in but the Website box still appears on my iPhone with Safari.

    Capas

  •  2,699
    PenciDesign replied

    Hi,

    Ahh, sorry, please replace the code I sent to this code:

    @media only screen and (max-width: 768px){
    #respond p.comment-form-email, #respond p.comment-form-author{ width: 48%; }
    #respond p.comment-form-email{ margin-left: 4%; }
    #respond p.comment-form-url{ display: none; }
    #respond p.comment-form-author input{ max-width: 100%; }
    }


    Best Regards,

    PenciDesign


  • Capas replied

    That does not work.  Attached is screen shot from iPhone.  On my Windows 10 desktop I only see the Comment box.  On my iPad and iPhone I see all the boxes including "Website".  I do not want to see box for "Website".

    My website is https://cktravelblog.com/

    Capas

  •  2,699
    PenciDesign replied

    Hi,

    Please try again with this code:

    @media only screen and (min-width: 768px){
    #respond p.comment-form-email, #respond p.comment-form-author{ width: 48%; }
    #respond p.comment-form-email{ margin-left: 4%; }
    #respond p.comment-form-author input{ max-width: 100%; }
    }
    #respond p.comment-form-url{ display: none; }

    Note that: When you added this code to Customize >  Custom CSS, please clearly all the cache before check it again.


    Best Regards.

    PenciDesign

  • Capas replied

    No change!  I cleared Safari cache before testing.

    Capas

  •  2,699
    PenciDesign replied

    Hi,

    Because your comment code make that code doesn't work.

    I see your custom CSS has comment like this:

    /*
    /* remove website from comments
    @media only screen and (min-width: 768px){
    #respond p.comment-form-email, #respond p.comment-form-author{ width: 48%; }
    #respond p.comment-form-email{ margin-left: 4%; }
    #respond p.comment-form-author input{ max-width: 100%; }
    }
    #respond p.comment-form-url{ display: none; }
    

    This comment:

    /*
    /* remove website from comments

    make all the code below this disable.

    Please change it to:

    /* remove website from comments */

    or remove it.


    Best Regards,

    PenciDesign

  • Capas replied

    Looks good, thanks for your patience with me.

    Capas