I solved this same problem by editing the "tpl_create_account_success_default.php" file located under: INCLUDES/TEMPLATES/TEMPLATES_DEFAULT/TEAMPLATES folder.
3rd to last line of the file reads:
PHP Code:
<div class="buttonRow forward"><?php echo '<a href="' . $origin_href . '">' . zen_image_button(BUTTON_IMAGE_CONTINUE, BUTTON_CONTINUE_ALT) . '</a>'; ?></div>
</div>
I changed it to read:
PHP Code:
<div class="buttonRow forward"><?php echo '<a href="https://www.ourdomainname.com/index.php?main_page=checkout_shipping">' . zen_image_button(BUTTON_IMAGE_CONTINUE, BUTTON_CONTINUE_ALT) . '</a>'; ?></div>
</div>
Now, when someone creates an account and they click on the button that says "Click to Continue" they are directed to the checkout_shipping page. Not the Home page.
Hope this helps.