Jump to content

Featured Replies

Posted

Hello! 

I need to remove the comment tab header (1 Comment etc) from my database record's template and leave only the comment body. I want my comment to be only the part in the blue box. I tried checking in my templates but I couldn't find the right one, which one do I have to edit?

 

 C.thumb.PNG.644ff8cb1c3c11a0a8f391ad4ff3e3d7.PNG

 

Thanks 🙂  

You could add the following CSS to your custom.css file to hide the tabs

body[data-pagecontroller="page"] [data-controller="core.front.core.commentsWrapper"] ul[role="tablist"] {
	display: none;
}

 

  • Author

Thanks! Worked, but thinking I'd like to remove also the container (padding, border etc) 🙂  

Edited by Matteo Russo

body[data-pagecontroller="page"] [data-controller="core.front.core.commentsWrapper"] .ipsTabs {
	padding: 0px;
}

that should do it, but play around with the inspector in your browser to get an idea of whether that gets you what you want or not

  • Author

Worked 😄  thank you

Recently Browsing 0

  • No registered users viewing this page.