Results 1 to 9 of 9
  1. #1
    Join Date
    Nov 2014
    Location
    Corbin
    Posts
    2
    Plugin Contributions
    0

    Default How to add ID to zen_draw_form?

    Hi all,

    I am wondering how I can add an ID to a Zen Cart form. Here is the code for the form:

    <?php echo zen_draw_form('catalogForm', zen_href_link(FILENAME_CATALOG)); ?>

    When I view the source code of the page, I see that this code produces a <form> tag that includes name="catalogForm". I want to add id="catalogForm" as well.

    Thanks!

  2. #2
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,489
    Plugin Contributions
    88

    Default Re: How to add ID to zen_draw_form

    Code:
    <?php echo zen_draw_form('catalogForm', zen_href_link(FILENAME_CATALOG), 'post', 'id="catalogForm"'); ?>

  3. #3
    Join Date
    Nov 2014
    Location
    Corbin
    Posts
    2
    Plugin Contributions
    0

    Default Re: How to add ID to zen_draw_form

    Thank you lat9, that worked perfectly!

  4. #4
    Join Date
    Nov 2005
    Location
    Vancouver, Canada
    Posts
    151
    Plugin Contributions
    0

    Default Re: How to add ID to zen_draw_form

    Hello Lat9

    I tried adding an ID to my contact form, but when I send the form it just reloads the page with some of the fields filled out. the only difference between your example and mine is SSL and action=send. Here's my code:

    HTML Code:
    <?php 
    /** 
    * removing ID from form worked
    * readded ID, no go
    * changed ID from contact_form to contactForm, no go
    */
    ?>
    <?php echo zen_draw_form('contact_us', zen_href_link(FILENAME_CONTACT_US,'id="contactForm"', 'action=send', 'SSL')); ?>
    could you guide me? I'm using zc1.5.5

  5. #5
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,489
    Plugin Contributions
    88

    Default Re: How to add ID to zen_draw_form

    Quote Originally Posted by newagekat View Post
    Hello Lat9

    I tried adding an ID to my contact form, but when I send the form it just reloads the page with some of the fields filled out. the only difference between your example and mine is SSL and action=send. Here's my code:

    HTML Code:
    <?php 
    /** 
    * removing ID from form worked
    * readded ID, no go
    * changed ID from contact_form to contactForm, no go
    */
    ?>
    <?php echo zen_draw_form('contact_us', zen_href_link(FILENAME_CONTACT_US,'id="contactForm"', 'action=send', 'SSL')); ?>
    could you guide me? I'm using zc1.5.5
    Sure, try this instead:
    Code:
    <?php echo zen_draw_form('contact_us', zen_href_link(FILENAME_CONTACT_US, 'action=send', 'SSL'), 'post', 'id="contactForm"'); ?>

  6. #6
    Join Date
    Jul 2012
    Posts
    16,733
    Plugin Contributions
    17

    Default Re: How to add ID to zen_draw_form

    By the time I decided to go ahead and post the same solution as above (checking for response before doing so) it was already posted. :) deleted my original response.
    Last edited by mc12345678; 4 Sep 2019 at 07:51 PM.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  7. #7
    Join Date
    Nov 2005
    Location
    Vancouver, Canada
    Posts
    151
    Plugin Contributions
    0

    Default Re: How to add ID to zen_draw_form

    Thank you lat9 and MC12345678, this worked!

    MC12345678 i sent you a pm.

  8. #8
    Join Date
    Nov 2005
    Location
    Vancouver, Canada
    Posts
    151
    Plugin Contributions
    0

    Default Re: How to add ID to zen_draw_form

    Lat9 or MC12345678

    Thank you again for your help on these. The client wants to add additional tracking to various forms and I manage to get all of them done, but have had no success with the logins.

    If I wanted to also add an ID to split logn and the header login on this page https://customironworks.com/login.html, would the same code modification apply?

    I noticed that split login already has an action=process
    HTML Code:
    <?php echo zen_draw_form('login', zen_href_link(FILENAME_LOGIN, 'action=process' . (isset($_GET['gv_no']) ? '&gv_no=' . preg_replace('/[^0-9.,%]/', '', $_GET['gv_no']) : ''), 'SSL'), 'id="loginForm"'); ?>
    however, the ID does not show on the form when you view source and placing the 'post' does not process the form, it just reloads the same page. I've tried various combinations, but the only one that works is the original code.

    for the header I've added the same in the sidebox/tpl_login_header.php like this
    HTML Code:
    if(!$_SESSION['customer_id']) {
      echo zen_draw_form('account_box', zen_href_link(FILENAME_LOGIN, 'action=process', 'SSL'), 'post', 'id="loginForm"');
    I also need to add scripts below the form tag, but not sure where to place that
    HTML Code:
    </fieldset></form>\n";
    before the \n" ?? having it below the </form> of split login is not sufficient as users can login from any page. Maybe this particular one should be just before the </body>

    I really appreciate the assistance. Thank you.

  9. #9
    Join Date
    Jul 2012
    Posts
    16,733
    Plugin Contributions
    17

    Default Re: How to add ID to zen_draw_form

    Quote Originally Posted by newagekat View Post
    Lat9 or MC12345678

    Thank you again for your help on these. The client wants to add additional tracking to various forms and I manage to get all of them done, but have had no success with the logins.

    If I wanted to also add an ID to split logn and the header login on this page https://customironworks.com/login.html, would the same code modification apply?

    I noticed that split login already has an action=process
    HTML Code:
    <?php echo zen_draw_form('login', zen_href_link(FILENAME_LOGIN, 'action=process' . (isset($_GET['gv_no']) ? '&gv_no=' . preg_replace('/[^0-9.,%]/', '', $_GET['gv_no']) : ''), 'SSL'), 'id="loginForm"'); ?>
    however, the ID does not show on the form when you view source and placing the 'post' does not process the form, it just reloads the same page. I've tried various combinations, but the only one that works is the original code.

    for the header I've added the same in the sidebox/tpl_login_header.php like this
    HTML Code:
    if(!$_SESSION['customer_id']) {
      echo zen_draw_form('account_box', zen_href_link(FILENAME_LOGIN, 'action=process', 'SSL'), 'post', 'id="loginForm"');
    I also need to add scripts below the form tag, but not sure where to place that
    HTML Code:
    </fieldset></form>\n";
    before the \n" ?? having it below the </form> of split login is not sufficient as users can login from any page. Maybe this particular one should be just before the </body>

    I really appreciate the assistance. Thank you.
    For the first form, it's missing the indication of how the data should be passed (post or get) which is expected in the position where the current id parameter is placed. So instead of:
    HTML Code:
    <?php echo zen_draw_form('login', zen_href_link(FILENAME_LOGIN, 'action=process' . (isset($_GET['gv_no']) ? '&gv_no=' . preg_replace('/[^0-9.,%]/', '', $_GET['gv_no']) : ''), 'SSL'), 'id="loginForm"'); ?>
    It should be:
    HTML Code:
    <?php echo zen_draw_form('login', zen_href_link(FILENAME_LOGIN, 'action=process' . (isset($_GET['gv_no']) ? '&gv_no=' . preg_replace('/[^0-9.,%]/', '', $_GET['gv_no']) : ''), 'SSL'), 'post', 'id="loginForm"'); ?>
    As far as placing the javascript, when you say that someone can login from any page, are you saying that on any given page there are blanks to be filled in to provide access or are you referring to the existence of a link that would take one to the login page? If the first is true, that it will need to fire on any page, then it could be placed/pulled at the start of the page load or could be part of the main_page code or in some way off of the footer area. Otherwise before or after the \n would be okay provided the content is properly put to the browser.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

 

 

Similar Threads

  1. v150 zen_draw_form() - doesn't do anything?
    By nazca in forum General Questions
    Replies: 4
    Last Post: 23 Sep 2013, 09:12 PM
  2. zen_draw_form
    By swguy in forum Upgrading to 1.5.x
    Replies: 1
    Last Post: 16 Aug 2011, 09:39 AM
  3. Replies: 2
    Last Post: 31 Oct 2007, 10:00 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR