Product Specific Form - Help Needed

I have a client who will be selling firearms and ammunition on a hunting site, along with other hunting products.
I need to have a form specific for firearms and ammunition products that will be required to be filled out before that product firearm and or ammunition can be added to the cart. The laws in Canada are very strict about purchases of such product on the internet.
How do I do this or is it even possible to have a form specific to these products pop up when add to cart is clicked?
Thanks in advance

Hello river east,
I'm just spitballing here, but here is one option for this to work.
Basically you would create a secure zone and if the user isn't signed in they wouldn't see the Add to Cart button.
The js would look like this - http://jsfiddle.net/chaddidthis/uDmXj/1/
As a part of signing up for the secure zone they have to accept the gun and ammo purchasing terms. You could have the link to the form on the large product page, sends them to either log in or sign up via the form they need to fill out. After then fill out the form they are sent back a page sending them back into the large product view they were on, and since they are signed in now the product will be able to add to cart.
Maybe this will spark others to add on to this, but that is pretty much the only way I could think to accomplish the desired results.
Hope it helps,
Chad Smith | http://bcgurus.com/Business-Catalyst-Templates for only $7

Similar Messages

  • Specific Batch Help Needed

    I batch 100's of images and have sets of actions I use for
    different objectives. I'm looking to tie them together to eliminate
    all manual effort. Some things I do Fireworks makes me do them
    manually (or I don't know how to do it through batching). If
    someone is willing to lend extensive help or if I need specific
    code written to help me I'm willing to pay. Here are my issues:
    1. During my process I paste one image (a copyright image) on
    top of the image I'm batching. This makes me batch halfway through
    my process, open all images, manually copy and paste the copyright
    image on the images I'm working with, re-save, then continue the
    batching process. Is there a way to paste a separate consistent
    image on top of another through batching so I don't have to stop
    and do this manually?
    2. I start with a jpg file and during the process save edited
    files as png. Currently, I batch the save as command but have to
    click OK to save the file just you would if you were doing save as
    with one file. This slows down the batching plus I have to sit here
    and hit enter every 10 seconds. Can this be automated?
    3. In one process I apply a mask to an image that already has
    a mask. During batching a box pops up and asks if I want to
    replace, add or cancel the mask since the image already has a mask.
    Can this be automated so I don't have to click replace for every
    image?
    Thanks for your help. If I need to speak with a developer
    feel free to pass on info and I will contact you or them.

    Hello river east,
    I'm just spitballing here, but here is one option for this to work.
    Basically you would create a secure zone and if the user isn't signed in they wouldn't see the Add to Cart button.
    The js would look like this - http://jsfiddle.net/chaddidthis/uDmXj/1/
    As a part of signing up for the secure zone they have to accept the gun and ammo purchasing terms. You could have the link to the form on the large product page, sends them to either log in or sign up via the form they need to fill out. After then fill out the form they are sent back a page sending them back into the large product view they were on, and since they are signed in now the product will be able to add to cart.
    Maybe this will spark others to add on to this, but that is pretty much the only way I could think to accomplish the desired results.
    Hope it helps,
    Chad Smith | http://bcgurus.com/Business-Catalyst-Templates for only $7

  • Basic form help needed

    I am new to Dreamweaver 8 (but have worked with simple html a
    quite a bit) and am working on building a, hopefully, simple
    prototype for a project. What I need to do is collect user-entered
    text and user-selected dropdown box data on one page and send it to
    another for presentation there. After looking at the Help screens,
    I looked at using Session variables and it seems that is the best
    way to pass the data. Where I am stuck is in the (from Help
    Contents) Making Pages Dynamic - Creating Forms - Creating HTML
    forms help. They first say to, in step 2, Select Insert > Form
    (which doesn't do anything - you have to click another option,
    which I figured meant Form again). Then, in step 3, they say to
    "Specify the page or script that will process the form data." by
    selecting the file in the Action box in Properties. I don't have a
    file to "process the form data" and don't really know what they are
    talking about. Help!
    I originally (before I reverted to using Help) set it up with
    Insert->Form->Text Field text entry boxes, figuring this was
    a Form field that could be captured and passed on. Right? Wrong? I
    guess I thought the method would be to define a variable name
    associated with a text input field in one page, then pass it with
    the value to the next page. That is pretty much what it seems
    Session variables do (?), which I discovered when I started looking
    at Help.
    So, was I on the right track for a simple implementation and
    missed the way to capture and transmit the data, or do I need to
    use the Forms->Forms option? If the former, how do I define the
    variable names? If the later...well, I am real confused then. :-)
    Thanks for your help.
    (btw, we do have training material coming - went with
    Dreamweaver for Dummies, Peachpit Macromedia Dreamweaver 8 Hands-On
    Training "dead tree media" and TechRepublic Fast Track Dreamweaver
    8 CBT. Any opinions on those?)

    Session variables as the name suggests are created when a
    user starts a session and last till the session is open. You form
    doesn't really need session variables unless you are carrying form
    data from one page to another and need to keep it associated with
    that specific user such as in shopping cart applications.
    I have never used the dreamweaver insert form, so can't help
    you there. why not code the form yourself, especially since you
    have been using html
    The link below may help.
    http://www.w3schools.com/html/html_forms.asp

  • Forms help needed

    I have several forms on my website and I need each to send
    the form to two email address, and also send back an auto response
    when email is sent out. Also after submit button it says your
    request has been submitted and then after about 8 seconds it takes
    them back to the home page.
    How do I do this? I have the forms done but need help with
    the rest above (two emails,auto respond,ect.)
    Thanks

    There are only two ways to process form data -
    1. Use mailto:[email protected] as the action of the form
    2. Use a server-side scripting method to a) harvest the
    form's data, b)
    process it in some manner, e.g., enter it into a database, c)
    formulate and
    send an email to one or more email recipients, and d)
    redirect the visitor
    to some ending page
    Method 1 is quite simple, and is also the least reliable. It
    depends both
    on your visitor having an email client already installed on
    their computer -
    this eliminates public computers, or home users without email
    clients
    installed (more and more it seems) - and on the installed
    email client
    responding to
    the mailto call. It is not possible to use this method *and*
    send the
    visitor to a
    thank you page as well.
    Method 2a is the preferred method, since it eliminates the
    problems of
    method
    1, but it means that you have to grapple with
    server-scripting somehow (ASP,
    CF, PHP, perl, etc.).
    Method 2b would be to use some third-party form processing,
    like
    http://www.bebosoft.com/products/formstogo/.
    You would have to decide which of these methods is best for
    your needs,
    but if it's Method 2a, then start by asking your host what
    they provide for
    form
    processing. If it's 2b, then read their FAQ/instructions
    carefully.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "568jfe56nfg" <[email protected]> wrote in
    message
    news:[email protected]...
    >
    > I have several forms on my website and I need each to
    send the form to
    > two
    > email address, and also send back an auto response when
    email is sent out.
    > Also
    > after submit button it says your request has been
    submitted and then after
    > about 8 seconds it takes them back to the home page.
    >
    > How do I do this? I have the forms done but need help
    with the rest above
    > (two
    > emails,auto respond,ect.)
    >
    > Thanks
    >

  • Adobe Forms help needed

    I've created a form in Adobe Acrobat 7.0. However, when the
    Adobe reader users fill in the form they are unable to save the
    data filled form. Can I change my settings in the form so that the
    Adobe Reader users can fill out and save the form or do I need to
    purchase/use the LifeCycle application?

    Thank you for your response. These forums are specific to the
    Acrobat.com website and its set of hosted services, and do
    not cover the
    Acrobat family of desktop products. Please visit the
    following forums
    for any questions related to the Acrobat family of desktop
    products:
    http://www.adobeforums.com/cgi-bin/webx/.3bbeda8b/

  • Urgent Form Help Needed

    I am trying to fill out a pdf form created by the Government of Canada and when I enter text in to the one of the text fields it does not keep the text there the text field merges with the box above.  The form is available here: http://www.international.gc.ca/development-developpement/assets/pdfs/partners-partenaires/ calls-appels/iyip-psij-form-2014-eng.pdf . The fields I am having the problem with is 1.1 Internship Details which when I put in the answer (1200 words) it half merges with the text box above 1.0 Rationale for Initiative.
    I have downloaded a number of versions of the file (on a number of pcs) and they all have the same problem. There are problems downloading the form in Chrome and some of the other web browsers but the newest version of IE works.  I need to know if I am doing something wrong or if there is a problem with the form itself. I'm using Adobe Reader XI to fill the form and it was created using LiveCycle Forms 9.0. The creator of the form is highly unlikely to offer any assistance unless I can prove the problem is on their end. This is an RFP due tomorrow and my job kinda depends on it. HELP!

    Hi Erin,
    I've downloaded the form and tried to fill it in myself. I'm able to paste in 700 words (just under 4000 characters) without issue, but anything above that produces the error that you describe. So, it seems to me that the form designer may have imposed a limit on how many characters can be entered into that form field.
    I hope that helps....
    Best,
    Sara

  • UCM Web Form, help needed

    Hi,
    I just have started working on Oracle UCM. I am majorly stuck with web form (HCSF).
    Below is the form code,
    <form name="CommentsPageForm" method="POST" action="<!--$HttpCgiPath-->">
              <input type=hidden name="IdcService" value="SUBMIT_HTML_FORM">
              <input type=hidden name="dID" value="<!--$SourceID-->">
              <input type="hidden" name="RevisionSelectionMethod" value="Latest">
              <input type=hidden name="FormDocTitleScript" value="<!--$UserName--><!--$formTitle-->">
              <input type="hidden" name="RedirectURL" value="<!--$HttpCgiPath-->?IdcService=GET_FILE&dDocName=<!--$ref:dDocName-->&Rendition=Web&RevisionSelectionMethod=Latest">
    <!-- All input fields and conditional code -->
    </form>
    If I keep the dID input field then it throws an error message like following
    Content Server Request Failed
    Unable to submit HTML form. The HTML form is not the latest revision.
    If I remove the dID input field then it throws an error message like following
    Unable to execute service (null) and function computeDocID.
    (System Error: Either dID must be specified or RevisionSelectionMethod must not force the choice of a dID.)
    I have tried to remove and add other input fields but nothing has worked.
    Please help me out with this. Please point out where I made the mistake. I copied
    codepieces from Bex Huff's book, that too had same error.
    Regards
    Udita

    hi All,
    I'm facing the same issue, I have a soap request which will update the metadata field on the service call.
    The request url is coded as
    var requestUrl = httpCgiPath + "?IdcService=UPDATE_DOCINFO" + "&dID=" + datafileID +"&dDocName=" + datafileDocName + "&xComments=" + inputComments.value + "&dDocTitle=" + inputTitle.value + &idcToken=#active.IdcToken" + "&IsSoap=1";
    When I fetch the dynamic url and tried in browser then I get following error:
    Content Server Request Failed
    Unable to update the field. The authorization token is invalid. It has either expired or is not appropriate for the current request.
    You may need to reload an earlier page in order to proceed.
    See I have added idcToken as you guys suggested still token issue :(
    Any pointer for this issue will be helpful.
    Thanks

  • Form help needed- creating a PRIORITY FIELD

    I cannot figure this out as i have looked all over the
    internet to no avail.
    I have a 30 question coldfusion flash form.
    I would like the user to select their top eight questions by
    having a drop menu labeled 1 thru 8 beside each question.
    The priority number can only be chosen once.
    Help please...

    zoemayne wrote:
    java:26: cannot find symbol
    symbol  : method add(java.lang.String)
    location: class Dictionary
    add(toAdd);this is in the dictionary class
    generic messageThat's because there is no add(...) method in your Dictionary class: the add(...) method is in your WordList class.
    To answer your next question "+how do I add things to my list then?+": Well, you need to create an instance of your WordList class and call the add(...) method on that instance.
    Here's an example of instantiating an object and invoking a method on that instance:
    Integer i = new Integer(6); // create an instance of Integer
    System.out.println(i.toString()); // call it's toString() method and display it on the "stdout"

  • Checkbox in tabular form - help needed

    I'm trying to build a tabular form, with a checkbox for a field that can have value 'Y' or 'N'. Adding the checkbox is no problem, with the htmldb_item.checkbox API.
    However, processing it is.
    On this forum I found a way to process the checkboxes, by looping through all the records (with the help of htmldb_item.hidden in which the id is stored) and reading the value from the checkboxes and updating the column if the checkbox is checked. (see Re: Report with updateable checkbox)
    however, as soon as I add a htmldb_item.hidden item, I receive the following error when I submit the tabular form to the Multi Row Update process:
    "Error in mru internal routine: ORA-20001: Error in MRU: row= 1, ORA-20001: ORA-20001: Current version of data in database has changed since user initiated update process. "
    My query:
    Select id
    ,htmldb_item.hidden(1,id)
    ,htmldb_item.checkbox(2,id, decode(field, 'Y', 'CHECKED', NULL))
    from table
    What am I doing wrong?
    is there a better way to process a tabular form with checkboxes?
    Or should I process all the rows manually by updating every record even if it hasn't changed (with a loop through all the records)?

    Tonnie, did you ever get an answer to this question?
    Michael Cunningham

  • Dynamic Form Help Needed !!

    Hi Guys,
    I need a form that has the following how do i code it in
    dreamweaver ?
    name :
    email address :
    phone number :
    status: item are New, Contacted, Appointment Scheduled, Sold
    ( This would be a dropdown and depending on what the user chooses
    the options below show up )
    commission amount (only shows if the status is changed to
    "Sold")
    Thumbnail Calendar (only shows if Appointment Scheduled is
    the status)

    Depends on what sort of server side processing you're going
    to be using for
    your dynamic form...
    Do you have that info??
    "NYCKIDDbx" <[email protected]> wrote in
    message
    news:fmip1k$rhv$[email protected]..
    > Hi Guys,
    >
    > I need a form that has the following :
    >
    > name :
    > email address :
    > phone number :
    > status: item are New, Contacted, Appointment Scheduled,
    Sold ( This would
    > be a
    > dropdown and depending on what the user chooses the
    options below show
    > up )
    > commission amount (only shows if the status is changed
    to "Sold")
    > Thumbnail Calendar (only shows if Appointment Scheduled
    is the
    > status)
    >

  • XML form Help Needed Please

    Hello Everybody
    Here is my requirement.
    I am creating a XML form that will be set up with a approval workflow. My form has a combo box with several entries and whenever the user selects something from this box the approver should be changed accordingly.
    One more requirement is I should show this approver in the form.
    Can somebody please help me. I have seen the propeties in the XML form but not getting any clue on how to use them.
    Any help will be greatly appreciated.
    Thanks
    Renu

    Renuka,
    In KM you can use layout set in order define something such as: command groups by files, folders and links. Also you can define your layout controller, which columms you want to display, number of rows so on. Please, read about layout set, collection renderer and resource renderer.
    After, you can assign this layout to your folder or iview.
    Therefore when you open your form from this iview, you can use botton defined in this layout.
    As you can see by default there are two layout defined for news:
    NewsBrowser
    NewsExplorer
    Try to analyze it.
    Patricio.
    Message was edited by: Patricio Garcia

  • Submitted Form Help Needed

    Hi there,
    I have created a form in Adobe LiveCycle Designer 7.0 so that clients can fill in their answers and send back. I included the Submit button, however when I did a trial run with the form, it returned in .xml format which wont open in Internet Explorer. Can anyone guide me on how I can have the submitted forms returned in PDF form or if I need to do something with Internet Explorer to be able to access the .xml docs?
    Thank you!
    Amy

    If you want to use the .xml file, open the original pdf and import the file in to it then save under another name.
    You CAN enable the file so that people using Reader can fill it out, save it then email the entire form back to you but there are limts to it's use. You can either send the form to 500 people and collect an unlimited amount of responses or you can send it to an unlimited amount of people and collect 500 responses. Anything over that amount will be in violation of your license.
    To enable the file in Acrobat, you would find the option under Advanced>Enable usage rights in Adobe Reader (at least that's the verbiage in Acrobat 8 Pro). I'm not sure exactly where that option is in LiveCycle Designer but it's probably similar.

  • Portal form help needed

    hi
    i am developing a portal form based on a table with 3 coloumns(comment, sender and date). the form has a taxt box in which the user is supposed to enter the comment, and a "Send" button. the event handler for the button looks liek this:
    declare name varchar2(60);
         comment_text varchar2(2000);
    begin
    ime:=wwctx_api.get_user;
    comment_text:=p_session.get_value_as_varchar2(p_block_name=>'DEFAULT',p_attribute_name=>'comment');
    insert into poraki values (comment_text, name, sysdate);
    end;
    but when i press the "send" button, this is what i get:
    Error: (WWV-00000)
    can anyone please help?

    hi
    i've amde some mistakes while typing the previous message, so here is the right one:
    i am developing a portal form based on a table with 3 coloumns(comment, sender and date). the form has a taxt box in which the user is supposed to enter the comment, and a "Send" button. the event handler for the button looks like this:
    declare name varchar2(60);
         comment_text varchar2(2000);
    begin
    name:=wwctx_api.get_user;
    sodrzina:=p_session.get_value_as_varchar2(p_block_name=>'DEFAULT',p_attribute_name=>'comment');
    insert into poraki values (comment_text, name, sysdate);
    end;
    but when i press the "send" button, this is what i get:
    Error: (WWV-00000)
    can anyone please help?

  • Form help needed, please

    Could someone please help me with this form? For some reason,
    it just won't send.
    I've included the FLA, SWF and ASP files located here:
    www.d-mag.org/testform/sent_out.zip

    Hi Paul,
    I presume that you are using the desktop version of Acrobat Pro to author the form.
    I will move this discussion to the PDF Forms forum so that the experts in the forum can answer your question.
    Please note that the Reader/Acrobat DC mobile apps (for iOS, Android, Windows Phone, etc.) have limited JavaScript support.
    JavaScript for Reader Mobile API Reference (iOS)
    You may be able to make the form work as you want in the desktop version of Adobe Reader/Acrobat Reader DC.  However, some functionality (e.g adding a sequence number to each PDF) will not work in the mobile apps due to the limited JavaScript support.  Sorry for the inconvenience.

  • JPQL Query for specific usecase, help needed

    Does anyone knows how to write the JPQL query for this specific use case.
    Take 3 tables,
    Table 1 contains bids for many auctions (Bid table)
    Table 2 Contains many auctions (Auction Table)
    Table 3 contains many users (User Table)
    I need a query to retrieve all the highest bids per auction for a particular user.
    For example if the user has bidded on 10 auctions., but for each auctions has placed 3 bids each. Following the query, I would expect to get 10 bids back, each being the highest per auction.
    A Bid has a bid value that can be used for filtering.
    Thanks
    Peter

    It would be something like the JPQL version of 'select * from bids join auctions using (auction_id) where bids.userid = ? group by auctions.auction_id order by bids.amount desc'. But this is primarily an SQL question, and only secondarily a question as to how to translate that into JPQL, which should be straightforward.

Maybe you are looking for

  • Multiple Subject Areas

    Somewhat new so please forgive me if the question is simple (if it is, please point me in the right direction). I've looked through the documentation and this forum, but have not found what I'm looking for yet. I am trying to get a single worksheet t

  • Purchase Order form printing error.

    Hi all experts, I am not sure which category I should put this question to. Please guide me if I have raised the question in the wrong category, so that I can raise it at the right category. Sorry! I am having some problems in printing Purchase Order

  • Auhtorization issue with GRANT_ACTIVATED_ROLE and grantable

    Hi folks, how can I use a procedure like GRANT_ACTIVATED_ROLE but not just giving the user the rights for the role but also "yes" for grantable. I would like to do so. Thanks for any comments or thoughts! Cheers Klaus

  • Strange Behavouir iCal (Mac & iPhone)

    Hallo I work with iBiz for my Timebilling. After the switch to 10.5 I had a 2 hours of (TimeZone Problem) with the Events in iCal. The Times were displayed correctly in iBiz and on my ipHone. After the Update to 10.5.4, the 2 hours of in iCal where c

  • How to make a still frame of iDVD menu?

    I want to make a DVD label and cover that copy the title menu page. How do I make a still frame that I could manipulate in iPhoto or Photoshop? Thanks Ashley