fbpx

Hiding Individual Action Buttons

If you are looking to remove all action buttons, this can be done using the Hide Action Buttons setting in your Admin Settings screen.

It is also good to know that for individual Spaces, if a Space admin hasn’t filled in the data for a particular action button, for example the WhatsApp number, that particular button will not appear for users of that Space.

However, in some cases, you as the site administrator may not want any Space owner to be able to display an action button of a certain type. The easiest way to hide a particular button is using CSS. This is because the other buttons will gracefully fill the leftover space.

Simply add one or more of the below to your custom CSS.

.action-button-phone { display: none; }
.action-button-whatsapp { display: none; }
.action-button-website { display: none; }
.action-button-address { display: none; }
.action-button-email { display: none; }
.action-button-reviews { display: none; }