Code: Select all
<script type="text/javascript">
$(document).ready(function(){
$(".buttons").clone().appendTo("#content");
});
</script>
Code: Select all
<script type="text/javascript">
$(document).ready(function(){
$(".buttons").clone().appendTo("#content");
});
</script>
I love hacks like these, so simple and saves the annoyance of going back to the top all the time.montanaflynn wrote:I thought it was weird having to scroll to the top of the page to save product edits and other forms. So I created a small script that duplicates the save and cancel buttons and adds them to the bottom of the page as well as the top. It works by simply adding this jQuery code to your admin/view/template/common/header.tpl file after the jQuery script.
Code: Select all
<script type="text/javascript"> $(document).ready(function(){ $(".buttons").clone().appendTo("#content"); }); </script>
Code: Select all
It was like that when I found it, honest!
Users browsing this forum: No registered users and 7 guests