Announcement

Collapse
No announcement yet.

Membership Form

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Membership Form

    I would like to create a custom membership form (outside of actinic), which after being submitted, will bounce to an actinic product page (which will be the membership fee).

    This is quite straight forward, but i was wondering if there is a way to carry the first & last name from my membership form, over to the actinic product page. So that during checkout, the person does not have to re-enter their first & last name. any ideas?

    Basically - carrying fields (first & last name) from one contact form over to the actinic checkout page.

    any suggestions much appreciated - or if any freelancers fancy tackling it, drop me a quote

    Thanks.
    Mark

    #2
    Mark

    why do you want to create the page outside actinic?

    create the code. create two customvars. add them to the code.

    create a brochure page and paste the html code using !!< and >!! so actinic recognises the html. all you need to do after that is use the customvars.

    i think this should work.

    Comment


      #3
      i dont think a dynamic web value can be passed via custom vars.

      perhaps look into javascript, forms and the querystring.

      or use the htaccess to enable php on your server, and use code like this:

      PHP Code:
      <? echo $_GET['name']; ?>
      to display items sent in the url like this:

      Code:
      page.html?name=timmy

      Comment


        #4
        i meant outside of the catalog pages (forgot all about the brochure pages).
        Mark

        Comment

        Working...
        X