Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Let’s see a page with the comments
My apologies for not being clear enough.
Here is the link:
http://antonlaura.ca/?p=9
We are looking to turn the comments section into a simple guestbook and would like to remove the comments trigger function and button, (displaying comments directly, without need to click on button).
Following available advice on another post, we were able to display widgets directly, and remove the button that expands the function originally. Thus, was wondering how the same could be done for comments trigger/button.
With few personal adjustments, this theme is going to shine!
Thanks for your patience and support.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Add this to your Custom CSS:
// Hide the comments trigger
.comments-link {
display: none;
}
// Show the comments
#comments {
display: block;
}
With this addition the trigger is removed, but the comments do not display.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
My bad, it’s this:
/* Hide the comments trigger */
.comments-link {
display: none;
}
/* Show the comments */
#comments {
display: block;
}
That works, thank you!
The other main thing I am trying to work out is changing the size and colour of Menu and Title elements. I cannot figure out what overrides my CSS changes. It is referenced here:
http://wordpress.org/support/topic/unable-to-change-colours-of-title-and-menu?replies=1
The latter issue has been resolved on my end as well. I am able to change the style with ease now.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Cool, could you post up the solution on that thread? Thanks.
Hey.. I’m just looking at this to see what the difference is between the code solution you first gave and your correction, but I don’t see anything other than the way the comments are commented out.. is that it?