Is it possible to disable the LIKE function in a single page, but not on the entire Confluence Space.
 
If yes, I would be interested to know how :)
thanks!
Hi, you can put html macro on that page and put this stylesheet inside the macro.
<style type="text/css">
  #likes-section{display:none !important;}
</style>
Works perfectly! thanks a bunch!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Super! Glad that it helps :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's 4 years later and I'm trying to figure out how to do this ... I just tried this and it didn't work. Any other suggestions?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Maya, I ran into this: https://community.atlassian.com/t5/Confluence-questions/Confluence-ToC-Macro-Produces-Error/qaq-p/583120 and the code he is using worked for me, whereas Rian's did not.
Don't forget it has to be in an HTML macro:
<!-- This is code to hide the Like feature --!>
 <style type="text/css">
#likes-section{display:none
!important;}
</style>
					
				
			
			
			
				
			
			
			
			
			
			
		You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Space Tools
Stylesheet
Space Stylesheet add
#likes-section {
    display:none;
}
For server anyway.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
 
 
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.