Just like the points made from this post: Auto-generated SKU for new product, it’s annoying to have to enter some of the fields every time you create a new product because apparently, we want it ‘Enabled’ in status; weight doesn’t matter so much; and most of the products belong to one tax class or simply ‘None’.
To reduce repeatedly wasted time and increase productivity when creating products, just edit /app/design/adminhtml/default/default/template/catalog/product/edit.phtml and add the following JavaScript to the end of the file:
<script type="text/javascript">
if(document.getElementById('status').value == ""){
document.getElementById('status').options[1].selected = true;
}
if(document.getElementById('weight').value == ""){
document.getElementById('weight').value = "1.0";
}
if(document.getElementById('tax_class_id').value == ""){
document.getElementById('tax_class_id').options[1].selected = true;
}
</script>
Now the Weight field will have a default value of ’1.0′, the Status field is selected ‘Enable’ by default and the Tax Class is selected as ‘None’ by default.

