While editing some stuff to make it better with my forum, I found some things that are not good yet
Code:
<xen:if is="{xen:checked $xenOptions.GP_Donations_Currencies.Currency_GBP}"><option value="GBP">{xen:phrase GP_Donations_Currency_GBP}</option></xen:if>
<xen:if is="{xen:checked $xenOptions.GP_Donations_Currencies.Currency_EUR}"><option value="EUR">{xen:phrase GP_Donations_Currency_EUR}</option></xen:if>
<xen:if is="{xen:checked $xenOptions.GP_Donations_Currencies.Currency_USD}"><option value="USD">{xen:phrase GP_Donations_Currency_USD}</option></xen:if>
<xen:if is="{xen:checked $xenOptions.GP_Donations_Currencies.Currency_USD}"><option value="CAD">{xen:phrase GP_Donations_Currency_CAD}</option></xen:if>
<xen:if is="{xen:checked $xenOptions.GP_Donations_Currencies.Currency_USD}"><option value="JPY">{xen:phrase GP_Donations_Currency_JPY}</option></xen:if>
(Notice the USD is used 3 times) Should be
Code:
<xen:if is="{xen:checked $xenOptions.GP_Donations_Currencies.Currency_GBP}"><option value="GBP">{xen:phrase GP_Donations_Currency_GBP}</option></xen:if>
<xen:if is="{xen:checked $xenOptions.GP_Donations_Currencies.Currency_EUR}"><option value="EUR">{xen:phrase GP_Donations_Currency_EUR}</option></xen:if>
<xen:if is="{xen:checked $xenOptions.GP_Donations_Currencies.Currency_USD}"><option value="USD">{xen:phrase GP_Donations_Currency_USD}</option></xen:if>
<xen:if is="{xen:checked $xenOptions.GP_Donations_Currencies.Currency_CAD}"><option value="CAD">{xen:phrase GP_Donations_Currency_CAD}</option></xen:if>
<xen:if is="{xen:checked $xenOptions.GP_Donations_Currencies.Currency_JPY}"><option value="JPY">{xen:phrase GP_Donations_Currency_JPY}</option></xen:if>
Next: When you haven't entered Extra Information, there are like 3 <br />, it looks aweful

Make sure there's only one when no Extra Info added.
These are just suggestions:
- What about using this picture instead of the grey one? https://www.paypal.com/en_US/BE/i/btn/btn_donateCC_LG.gif It looks better with XenForo
- If you set the phrase of the Progress Information to "% of our goal ($20) reached." by default and you replace
Code:
{$xenOptions.GP_Donations_Progress_Info}
by
Code:
{$xenOptions.GP_Donations_Progress_Percentage}{$xenOptions.GP_Donations_Progress_Info}
than you don't need to edit the % twice in the options every time a new donation comes in.
- A <br /> between the donate picture and the progress bar would be nice too

That's it