• Where would I add text for a disclaimer under the “Leave a Reply” for commentators? on WordPress 4, will need to use some html.

    You were able to add in comments.php, but it seems that has changed now.

    Specifically for the Twenty Fourteen theme, but I think they are much the same.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Marc,
    One option would be to use CSS. The biggest limitation would be where you could place the disclaimer in relation to the “Leave a Reply”. It would look like this for the 2014 theme;

    #reply-title::after {
      content: " (place disclaimer here...)";
      font-size: 14px;
      text-transform: none;
      font-weight: 400;
      font-style: italic;
    }
    Thread Starter Marc Kranat

    (@marclouis)

    Thank you,

    I found you could put it in single.php, but yes I prefer the idea of keeping it in the custom css, less likely it will get overwritten in the future.

    It does work well, font styles work, but do you know if you can embed a hyperlink in there, href is not working.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add disclaimer above comment box’ is closed to new replies.