So, the paypal create button website allows to use just one currency at a time. I would like to allow the donators to donate in whatever currency they would like to donate into. How do I do this? I found on the internet I should put this html line inside the form
<input type="hidden" name="currency_code" value="GBP">
But this does not work, any help?
This is the html I have at the moment
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="PYU4WP4DSWQXN">
<input type="image" src="http://lolo.works/Support%20Button/Support%20Button.png" border="0" name="submit" alt= "Support button" class="paypalbutton">
<input type="hidden" name="currency_code" value="GBP">
</form>