Dec 22, 2022 1:50 pm
Hi,
I recently posted about removing comments from the bottom of the page when they are displayed in a widget.Â
I was given the below CSS but this doesn't seem to work when using a tabbed function (see URL, it removes comments from both below content and in the comments tab). I don't suppose there is a solution for this? Again, just trying to replicate a bit of integraiton seen on play-places.com.
#comments {
display:none;
}
.geodir-single-reviews-container #comments {
display: block !important;
}
Really appreciate your help in advance.
Best,
Joseph
Website URL
4 Replies
Dec 23, 2022 8:03 am
Hi @jmellors,
The code should be customized:Â
#comments {
display:none;
}
.widget #comments {
display: block !important;
}
Please watch this video: https://www.screencast.com/t/iD8JmrBZ3

