I write an App_Plugin for v8, that does the job. You need to duplicate the complete edit.html-section of umbraco and then you can customize the buttons as you wish.
if you want to use it in the members-section, I guess you have to change to routing. Have a look into the "httpProviderIntercept.js". In line 11, you find the routing for the content section. So give it a try and change it to member:
if (request.url.toLowerCase().indexOf('views/**member**/edit.html') !== -1) {
request.url = '/App_Plugins/SP-CustomContentButtons/customButtons.html';
}
Adding custom button to edit page / custom save event
Hello,
Can anyone tell me if it's possible to add a new button on the edit page footer - to go alongside Preview, Save, Save and Publish.
If it can't be done is it possible to add a new option to the save button?
Thanks
Hi Paul,
You can add Action to the Context Menu. Here is the link for assistance. https://www.wiliam.com.au/wiliam-blog/adding-a-custom-control-to-umbraco-7-action-menu
However, adding a button at the bottom is not something we have seen earlier.
Cheers,
Shaishav
Hi, Paul,
I write an App_Plugin for v8, that does the job. You need to duplicate the complete edit.html-section of umbraco and then you can customize the buttons as you wish.
You find my code on git:
https://github.com/SitePointGmbH/Umbraco-CustomEditButtons/tree/master
If you have any questions, just write me.
All the best -
Tom
Hello
I am Trying to use your Plugin but i cannot custom it to work in Members So Can you help Me Please
Can You help me
Hi, Mohamed,
if you want to use it in the members-section, I guess you have to change to routing. Have a look into the "httpProviderIntercept.js". In line 11, you find the routing for the content section. So give it a try and change it to member:
is working on a reply...