I want customers to fill in registration information directly on the shopping cart page.
"Tpl_shopping_cart_default. php" I add the following code to this file.
PHP Code:
<?php echo zen_draw_form('create_account'zen_href_link(FILENAME_CREATE_ACCOUNT'''SSL'), 'post''onsubmit="return check_form(create_account);"') . zen_draw_hidden_field('action''process') . zen_draw_hidden_field('email_pref_html''email_format'); ?>
<h4 id="createAcctDefaultLoginLink"><?php echo sprintf(TEXT_ORIGIN_LOGINzen_href_link(FILENAME_LOGINzen_get_all_get_params(array('action')), 'SSL')); ?></h4>

<fieldset>
<legend><?php echo CATEGORY_PERSONAL?></legend>

<?php require($template->get_template_dir('tpl_modules_create_account.php',DIR_WS_TEMPLATE$current_page_base,'templates'). '/tpl_modules_create_account.php'); ?>

</fieldset>

<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_SUBMITBUTTON_SUBMIT_ALT); ?></div>
</form>
However, after filling in the registration information and submitting it, I still stayed on the shopping cart page and did not skip to the next delivery selection page.
Sometimes submitting registration information jumps back to the product information page.
I want to fill in the registration information on the shopping cart page and submit it, then skip to the next delivery selection page. What do I need to do?