Is there anyway of altering the default button that appears for saving pages within the Umbraco 7 CMS interface. Currently it shows Save and Publish as the default button, whereas for the website I am creating it would be more beneficial for the Save button to appear as default as the website relies heavily on the publish date functionality so that the pages are automatically published at set dates and times.
I had a similar requirement to make the Save button the default. After some investigation this change to Umbraco/Js/umbraco.services.js did the trick. No adverse effects since.
//This is the ideal button order but depends on circumstance, we'll use this array to create the button list
// Publish, SendToPublish, Save
// var buttonOrder = ["U", "H", "A"];
var buttonOrder = ["A", "U", "H"];
Alter default Save button
Is there anyway of altering the default button that appears for saving pages within the Umbraco 7 CMS interface. Currently it shows Save and Publish as the default button, whereas for the website I am creating it would be more beneficial for the Save button to appear as default as the website relies heavily on the publish date functionality so that the pages are automatically published at set dates and times.
Hi Graham,
I have not tried it yet, but I think maybe you can change that in this file:
/umbraco/views/common/dialogs/content/edit.html
Hope this can help you.
Best,
Sören
I had a similar requirement to make the Save button the default. After some investigation this change to Umbraco/Js/umbraco.services.js did the trick. No adverse effects since.
is working on a reply...