How can I 'hide' the 'page action' button...
Rick's Smarty code was close, but if it contains non-smarty curly brackets you need to surround it all in {literal} tags as in the examples under the pref, e.g.
Copy to clipboard
{if $page eq 'Homepage'}{literal} .wikiactions {display:none} {/literal}{/if}
Or you can use plain Custom CSS (safer 😉 and target just one page by using it's html.id, like this:
Copy to clipboard
#page_3804 .wikiactions {display:none}
(this is the id of the HomePage here)