Johan  
                (Johan)
               
                 
              
                  
                    January 30, 2014,  8:16am
                   
                   
              1 
               
             
            
              I moved my profile and files from old to new Imac.
Uploading the site from the old Imac in FW Pro 5.4, everything works fine as it has to 
But when uploading the same site on FW Pro 6 on my new Imac 
the site works fine only the 'Buy Button/form" does not function at all. Nothing happens when clicking on the button.
btw: Review cart button just works fine and gets me to the shopping cart in Mal’s
Any suggestions??
 
freewaytalk mailing list 
email@hidden 
Update your subscriptions at: 
http://freewaytalk.net/person/options 
             
            
               
               
               
            
            
           
          
            
            
              Without seeing the page online I cannot be specific but I would be looking at a layering issue as the cause - make sure that there are no elements that are overlapping the Buy Button.
David
 
freewaytalk mailing list 
email@hidden 
Update your subscriptions at: 
http://freewaytalk.net/person/options 
             
            
               
               
               
            
            
           
          
            
              
                Johan  
                (Johan)
               
              
                  
                    January 30, 2014,  8:39am
                   
                   
              3 
               
             
            
              Hi David,
www.ngispen.eu
 
freewaytalk mailing list 
email@hidden 
Update your subscriptions at: 
http://freewaytalk.net/person/options 
             
            
               
               
               
            
            
           
          
            
              
                Johan  
                (Johan)
               
              
                  
                    January 30, 2014,  8:41am
                   
                   
              4 
               
             
            
              
On 30 Jan 2014, 7:39 am, Johan wrote:
Hi David,
www.ngispen.eu
 
Uploading from the new Imac with FW Pro 6 ‘now’
 
freewaytalk mailing list 
email@hidden 
Update your subscriptions at: 
http://freewaytalk.net/person/options 
             
            
               
               
               
            
            
           
          
            
            
              Where is the Buy Button and on which page?
D
 
freewaytalk mailing list 
email@hidden 
Update your subscriptions at: 
http://freewaytalk.net/person/options 
             
            
               
               
               
            
            
           
          
            
              
                Johan1  
                (Johan)
               
              
                  
                    January 30, 2014,  8:51am
                   
                   
              6 
               
             
            
              on almost every page ’ add to cart’
 
freewaytalk mailing list 
email@hidden 
Update your subscriptions at: 
http://freewaytalk.net/person/options 
             
            
               
               
               
            
            
           
          
            
            
              Sorry - have to go out so cant look till later.
D
 
freewaytalk mailing list 
email@hidden 
Update your subscriptions at: 
http://freewaytalk.net/person/options 
             
            
               
               
               
            
            
           
          
            
              
                Johan1  
                (Johan)
               
              
                  
                    January 30, 2014,  8:55am
                   
                   
              8 
               
             
            
              alright, me to in fact
 
freewaytalk mailing list 
email@hidden 
Update your subscriptions at: 
http://freewaytalk.net/person/options 
             
            
               
               
               
            
            
           
          
            
              
                Johan1  
                (Johan)
               
              
                  
                    January 30, 2014,  9:32am
                   
                   
              9 
               
             
            
              It this moment the site is uploaded from the old Imac with FW Pro 5.4 and is alright, Buttons function.
But offcourse I want to be able uploading from my new Imac
 
freewaytalk mailing list 
email@hidden 
Update your subscriptions at: 
http://freewaytalk.net/person/options 
             
            
               
               
               
            
            
           
          
            
              
                Johan1  
                (Johan)
               
              
                  
                    January 30, 2014,  3:51pm
                   
                   
              10 
               
             
            
              At the moment I have the site uploaded at http://www.en-el.com 
This is the version uploaded from my new Imac with FW Pro 6 
The buy button’s/forms do not work, only get a bleu edge around the Buy button/form (Add to cart)
The buy button is a custom made “E-buy button” placed in a "E-buy form’ with or without variations. There are no overlapping elements
Any suggestion what the cause can be for not working buttons
 
freewaytalk mailing list 
email@hidden 
Update your subscriptions at: 
http://freewaytalk.net/person/options 
             
            
               
               
               
            
            
           
          
            
            
              It would appear that your form is malformed and that is why it doesn’t work.
This is the code
div id="e-buy-form"><form method="post" action="http://ww7.aitsafe.com/cf/add.cfm" id="fwShop-e-buy-form" style="display:inline" target="_parent">
		<input type="hidden" name="userid" value="********">
		<input type="hidden" name="product" value="Coat Stand no 1 by Teun Fleskens">
		<input type="hidden" name="price" value="775">
		<input type="hidden" name="qty" value="1">
		<input type="hidden" name="tax">
		<input type="hidden" name="currency" value="0">
		<input type="hidden" name="lg" value="14">
		<input type="hidden" name="units">
		<input type="hidden" name="return" value="www.en-el.com/design-shop/accessories/coatstand-no1-lensvelt.html">
		<input type="hidden" name="config" value="*******"></form><input type="image" src="Resources/e-buy-button.gif" name="submit" alt="add to cart gispen 663" value="submit"><select id="product-varia" class="f-ms" name="product[]" size=1>
			<option value="Bamboo" selected>Bamboo</option>
			<option value="Oak">Oak</option>
			<option value="Birch">Birch</option>
		</select>
	</div>
 
So if you look carefully you will see that the  tag does not enclose the submit button/image.
Move that inside as at
<div id="e-buy-form"><form method="post" action="http://ww7.aitsafe.com/cf/add.cfm" id="fwShop-e-buy-form" style="display:inline" target="_parent">
		<input type="hidden" name="userid" value="*********">
		<input type="hidden" name="product" value="Coat Stand no 1 by Teun Fleskens">
		<input type="hidden" name="price" value="775">
		<input type="hidden" name="qty" value="1">
		<input type="hidden" name="tax">
		<input type="hidden" name="currency" value="0">
		<input type="hidden" name="lg" value="14">
		<input type="hidden" name="units">
		<input type="hidden" name="return" value="www.en-el.com/design-shop/accessories/coatstand-no1-lensvelt.html">
		<input type="hidden" name="config" value="**********">
		<input type="image" src="Resources/e-buy-button.gif" name="submit" alt="add to cart gispen 663" value="submit"><select id="product-varia" class="f-ms" name="product[]" size=1>
			<option value="Bamboo" selected>Bamboo</option>
			<option value="Oak">Oak</option>
			<option value="Birch">Birch</option>
		</select>
</form>
</div>
 
And it will work.
Not sure why 6 is dealing with this differently to 5 - would have to see the 2 docs to work that out. Probably a construction thing.
D
 
freewaytalk mailing list 
email@hidden 
Update your subscriptions at: 
http://freewaytalk.net/person/options 
             
            
               
               
               
            
            
           
          
            
              
                Johan1  
                (Johan)
               
              
                  
                    January 31, 2014,  8:07am
                   
                   
              12 
               
             
            
              David, thanks for checking that one.
Now I will indeed see how it comes that the code changed and to make it so that I can just go on using the files in 6.
Not sure if I’ll manage today, but anyhow the buy buttons/form are functioning well at the other 2 url’s where it’s uploaded to in FW 5 from my old Imac
http://www.ngispen.eu 
 
freewaytalk mailing list 
email@hidden 
Update your subscriptions at: 
http://freewaytalk.net/person/options