Didn't even realize there was a drop down to choose! Yes, that makes a difference, thanks.
On the submit button focus issue, I've solved it well enough for now by doing the following:
It seems that the button is actually created by the function zen_image_submit. I'm not sure how the parameters work together, but I did notice that in the back button above the below code, it included a name="back". In preview_info.php around line 157:
Code:
if (isset($_GET['pID'])) {
echo zen_image_submit('button_update.gif', IMAGE_UPDATE, 'tabindex="1"');
To the "update" button, I added the 'tabindex="1"' portion in place of what was the 'name' element from for the back button. When the code is drawn on the page, the tabindex in fact allows you to press tab ONE time and it will activate the correct submit button. The onload focus() referenced above did not seem to want to activate the input image submit button. I suspect if that button was a true input type="submit" button it may have been a different story, but I'm not about to go around changing those sorts of things. This is the only instance I'm truly interested in.
The only way it could be better now is if the submit button were highlighted without having to hit tab, but I am never the less delighted in how this will streamline basic quantity changes to our inventory!
Jason