Google Checkout Button Not Working
8 posts by 4 authors in: Forums > CMS Builder
Last Post: June 16, 2010 (RSS)
By Dawna - June 7, 2010
Re: [Dawna] Google Checkout Button Not Working
By Donna - June 7, 2010
Have you tested your button code on a non-CMS Builder page to make sure it works? Get it working on a separate page without any CMS Builder code on it (just a plain HTML page), then send me a link. Then we can compare the two and see what's different. :)
--
support@interactivetools.com
Re: [Donna] Google Checkout Button Not Working
By Dawna - June 8, 2010
I hope this helps. :)
Re: [Dawna] Google Checkout Button Not Working
By Chris - June 8, 2010
What version of CMS Builder are you using?
Chris
Re: [Dawna] Google Checkout Button Not Working
By Chris - June 9, 2010
I can think of two workarounds for you:
1. Use Firefox. ;) I realize it may not be possible to get all your users who have access to editing payment buttons to use another browser.
2. Use a textbox field for your payment button and paste in HTML. You may end up needing to split your content field into two WYSIWYG fields: "before payment button content" and "after payment button content".
I hope this helps! Please let me know if you have any questions.
Chris
Re: [chris] Google Checkout Button Not Working
By affinitymc - June 15, 2010
Re: [affinitymc] Google Checkout Button Not Working
By Chris - June 16, 2010 - edited: June 16, 2010
I've done a little more research and have found a way to prevent IE from stripping the ACTION attribute. Open up cmsAdmin/lib/wysiwyg.php in a text editor and look for this line:
verify_html : false, // allow all tags and attributes
Add the line in red below it:
verify_html : false, // allow all tags and attributes
extended_valid_elements : 'form[action|accept|accept-charset|enctype|method]',
That seems to work for me! It is a little weird that all the TYPE="HIDDEN" fields show up as regular textfields in IE, but you can ignore that because they'll go back to being hidden on your website.
I hope this helps! Please let me know if anyone has any questions.
Chris