Page 6 of 9 FirstFirst ... 45678 ... LastLast
Results 51 to 60 of 259

Hybrid View

  1. #1
    Join Date
    Jun 2004
    Posts
    54
    Plugin Contributions
    0

    Default

    Also Doc, I've tested the forms and don't get any messages saying either that the message was sent or that the message failed, i've tried both.

    I didn't get a message after the forms were filled out properly.

    Any thoughts on this??

    Basically everything is there, just have to get the headers to work properly and the forms to send.

    Thanks again for all the wicked help.

  2. #2
    Join Date
    Jun 2004
    Posts
    54
    Plugin Contributions
    0

    Default

    Any Ideas? I'm no php guru so I'm lost.

  3. #3
    Join Date
    Jan 2004
    Posts
    66,443
    Plugin Contributions
    279

    Default

    Originally posted by waynerd@Jul 14 2004, 05:22 AM
    Since I added the new pages/forms every page that is linked from the information box has a new header of Band Sign-Up, where do I go to fix this one?
    You've changed the heading title somewhere you shouldn't have.

    Search your languages/english.php for "Band Sign-Up" and see where you have it.

    The only place you should have it is in something like this: define('BOX_INFORMATION_BAND_SIGNUP','Band Sign-Up');
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  4. #4
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    984
    Plugin Contributions
    6

    Default Re: custom forms - data collection

    Is the following code, placed at the beginning of includes/modules/pages/myform/header_php.php, all that is needed to ensure a user is logged in before completing form:

    Code:
      if (!$_SESSION['customer_id']) {
        $_SESSION['navigation']->set_snapshot();
        zen_redirect(zen_href_link(FILENAME_LOGIN, '', 'SSL'));
      }
    Thanks

  5. #5
    Join Date
    Oct 2012
    Posts
    13
    Plugin Contributions
    0

    Default Re: custom forms - data collection

    I have a fully working custom form to take bulk orders. However, I have hardcoded the dropdown for the products we have in our store. But it is becoming apparent that this is becoming a choir when we take items off the site as active. Is their a function built in zencart to auto populate the product array of products marked as instock only?

    I found this function below that is used with country and manufacturers and want to know what needs to be enclosed in the parentheses to array the products.

    Code:
    zen_draw_pull_down_menu

  6. #6
    Join Date
    Jan 2007
    Location
    Southern California
    Posts
    550
    Plugin Contributions
    0

    Default Re: custom forms - data collection

    Well, I think this is the place I want to be.... I need a Registration Form for my site. Not to be confused with a Customer Registration. I do fundraising, so I need a form for the Teams/Groups/Charities to register with my site and then I will manually add them to the list so that they are a option when customers are buying and choosing who to give their 20% to. I only need certain info and then for it to be emailed to me once completed. I thought about using a copy of Contact Us page, but I'm concerned I won't know where exactly to edit everything in every file and it will break my site which is almost completed. Again, this will have nothing to do with my actual customers who are there to buy and will register the usual way. Thanks! P.S. does anyone know why I have to type all in one paragraph now in this box instead of hitting return and going to a new line ? This is a recent issue and its driving me nuts! :-)

  7. #7
    Join Date
    Apr 2008
    Posts
    39
    Plugin Contributions
    0

    Default Re: custom forms - data collection

    What I finally did is to use an external form processor, on completion it simply sends the user to a link on Zen Cart. We are an Amateur Radio Organization and do membership apps, renewals and sometimes convention registrations. Works fine 3200 + transactions at this point.

    Mel

  8. #8
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: custom forms - data collection

    The purpose of this entire thread is to provide info on what is required to create a custom form for your site.. there is even a set of sample files to help you see how its done. You really will need to read through this thread if you want to tackle this task..
    Quote Originally Posted by LilleyPadGifts View Post
    Well, I think this is the place I want to be.... I need a Registration Form for my site. Not to be confused with a Customer Registration. I do fundraising, so I need a form for the Teams/Groups/Charities to register with my site and then I will manually add them to the list so that they are a option when customers are buying and choosing who to give their 20% to. I only need certain info and then for it to be emailed to me once completed. I thought about using a copy of Contact Us page, but I'm concerned I won't know where exactly to edit everything in every file and it will break my site which is almost completed. Again, this will have nothing to do with my actual customers who are there to buy and will register the usual way. Thanks! P.S. does anyone know why I have to type all in one paragraph now in this box instead of hitting return and going to a new line ? This is a recent issue and its driving me nuts! :-)
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  9. #9
    Join Date
    Jan 2004
    Posts
    66,443
    Plugin Contributions
    279

    Default

    Originally posted by waynerd@Jul 14 2004, 05:52 AM
    I've tested the forms and don't get any messages saying either that the message was sent or that the message failed, i've tried both.
    Something's not right in your files.
    I've tested it fine on a base v1.1.4 install here, and it works great.

    Perhaps re-grabbing the "header_php.php" and making sure you have it complete would be a starting point.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  10. #10
    Join Date
    Jan 2004
    Posts
    66,443
    Plugin Contributions
    279

    Default

    I did make one small edit to the header_php.php and tpl_band_signup_default.php files as posted ... just to change how the checkbox for terms and conditions was handled... there was a bug. To fix it on the second form you made, change the 'value="checked"' on your template to 'value="1"' instead.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

 

 
Page 6 of 9 FirstFirst ... 45678 ... LastLast

Similar Threads

  1. custom survey forms
    By cpk in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 2 May 2011, 05:07 PM
  2. Custom Forms
    By wwiii in forum General Questions
    Replies: 3
    Last Post: 11 May 2009, 05:51 PM
  3. Customer's seeing other users' data in forms
    By erikcw in forum General Questions
    Replies: 5
    Last Post: 30 Jan 2008, 11:30 PM
  4. Custom Collection of Attribute Data
    By Fastcar in forum General Questions
    Replies: 0
    Last Post: 15 Jan 2008, 01:01 PM
  5. Custom Forms - Help?
    By TurtleDove in forum Templates, Stylesheets, Page Layout
    Replies: 10
    Last Post: 9 Jun 2006, 02:46 AM

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