How to disable the "like" button for images?

Hi everyone,

I am looking for a way to disable the “like” button that appears at the bottom of the images that users uploaded by virtue of rtMedia. I looked for that option in the settings tab but couldn’t find anything relevant. Is that possible to do?

Thanks,

hfinn

Hello @hfinn,

Enabling or disabling like button feature is part of rtMedia-PRO. You can find documentaion link here -> http://docs.rtcamp.com/rtmedia/features/like/

However, you can hide it using custom css code. Try adding below css code to Custum Css tab under rtMedia admin settings:

.rtmedia-like{
display:none;
}

Thank you.