Hi Folks,
I just created a blog and newsletter subscription using the edition theme (see https://www.onlife.guide). I would like to delete the Facebook Button on the theme. Can someone help me with this please? :)
Many thanks,
Seb
Hi Folks,
I just created a blog and newsletter subscription using the edition theme (see https://www.onlife.guide). I would like to delete the Facebook Button on the theme. Can someone help me with this please? :)
Many thanks,
Seb
Hey @sebsigloch ,
You can remove the Facebook button in the handlebars template by deleting this highlighted block of code in /partials/header.hbs
file.
Or if you don’t want to customize the theme file, add this CSS in code injection in the admin to hide the button.
<style>
.social-item-facebook {
display: none;
}
</style>
Many thanks! This works.