Google Checkout Integration Trouble. WordPress is changing HTML code:(
-
Hey guys,
I love word press script but this is getting very annoying. I’m trying to add the Google checkout html code for buying something and it keeps altering the code so I want to know how I can manually go into the page and edit it through notepad so it overwrites whatever wordpress keeps trying to do.
<form action=”https://checkout.google.com/cws/v2/Merchant/blablabla/checkout” id=”BB_BuyButtonForm” method=”post” name=”BB_BuyButtonForm”> <input type=”hidden” name=”cart” value=”blablablablabla” /> <input type=”hidden” name=”signature” value=”blablablablabla=” /> <input type=”image” /> </form>
IT SHOULD BE:
<form action=”https://checkout.google.com/cws/v2/Merchant/blablabla/checkout” id=”BB_BuyButtonForm” method=”post” name=”BB_BuyButtonForm”>
<input name=”cart” type=”hidden” value=”blablabla”/>
<input name=”signature” type=”hidden” value=”blablabla”/>
<input alt=”” src=”https://checkout.google.com/buttons/buy.gif?merchant_id=blablabla&w=117&h=48&style=white&variant=text&loc=en_US” type=”image”/>
</form>Whenever I enter the HTML code of what it SHOULD be, wordpress updates it and alters the code so I want to know how I can manually go into the file using notepad and enter what the actual code should be so wordpress doesn’t alter it and screw up the coding.
Thanks
The topic ‘Google Checkout Integration Trouble. WordPress is changing HTML code:(’ is closed to new replies.