how to hide the action name in views
You can replace Display Name of your action with a blank value like concatenate(" ")
If you want to hide it only in specific views, try something like : if(Context(“View”) = “nameoftheviewyouwanttohide”, concatenate(" "), “originalactionname”)
3 Likes