How to remove the Oracle Workflow approval notification custom buttons from seeded notification?
In the message section add the javascript like this for the custom buttons this will disable notification buttons.
<script>window.addEventListener("load",
function(){var buttons = document.getElementsByTagName("button");
for (var i = 0; i < buttons.length; i++)
{
if (buttons[i].title == "Approve") buttons[i].style.visibility = "hidden";
if (buttons[i].title == "Reject") buttons[i].style.visibility = "hidden";
}
});
</script>