Quote Originally Posted by Sunabac View Post
Another question... on the checkout page I have
"Please notify me of updates to these products" and the box with the check mark in it. I would like to have the default without the check mark. Also when I clear the check mark and click update, it appears there again.
Well, it won't automatically give the people updates, unless they click "update" so in a way, it saves them from clicking if they do want updates. If they don't want updates, they can just not click "update".

But anyway, to do what you want to do, open up includes/templates/YOUR_TEMPLATE/templates/tpl_checkout_success_default.php and change:

Code:
<?php echo zen_draw_checkbox_field('notify[]', $notifications['products_id'], true, 'id="notify-' . $notifications['counter'] . '"') ;?>
to:

Code:
<?php echo zen_draw_checkbox_field('notify[]', $notifications['products_id'], false, 'id="notify-' . $notifications['counter'] . '"') ;?>