Not sure if these ideas have already been posted but what the hay...
I would love to see Jamroom integrate a 2 tiered Events section into the script. This would allow for regular events and designated (sponsored) Events to fall under another Heading (Bigger HomePage Display) Artists need Venue promotion for easier access to new clubs... Having an artist place their event up without my input allows a bigger footprint once outside users catch on.
A (Better than VB calendar) to tie in with the above updates...
Joined: 09 Jul 2003
Posts: 37116
Location: Seattle, WA
Posted: 02/17/05 17:59
bandmassa:
Hey, now PayPal supports Australian Dollars, it'd be nice if the Jamroom store allowed AU dollars as an option, too.
Is there a hack that could be done for current users to enable that feature in existing installations?
Bandmassa - welcome to the Jamroom forums!
Thanks for letting me know about this - I didn't know PayPal was now accepting Australian Dollars. I've already added it to my to-do list for the next version.
For now, you can modify the "store.php" file and look for this code:
then in the jamroom/include/jamroom-theme.inc.php file, look for this code (around line 1124):
Code
switch ($row['item_ccode'])
{
case 'USD': $_irep['{CURRENCY_SYMBOL}'] = '$'; break;
case 'CAD': $_irep['{CURRENCY_SYMBOL}'] = '$'; break;
case 'EUR': $_irep['{CURRENCY_SYMBOL}'] = ''; break;
case 'GBP': $_irep['{CURRENCY_SYMBOL}'] = '£'; break;
case 'JPY': $_irep['{CURRENCY_SYMBOL}'] = '¥'; break;
default: $_irep['{CURRENCY_SYMBOL}'] = '$';
}
change it to:
Code
switch ($row['item_ccode'])
{
case 'AUD': $_irep['{CURRENCY_SYMBOL}'] = '$'; break;
case 'USD': $_irep['{CURRENCY_SYMBOL}'] = '$'; break;
case 'CAD': $_irep['{CURRENCY_SYMBOL}'] = '$'; break;
case 'EUR': $_irep['{CURRENCY_SYMBOL}'] = ''; break;
case 'GBP': $_irep['{CURRENCY_SYMBOL}'] = '£'; break;
case 'JPY': $_irep['{CURRENCY_SYMBOL}'] = '¥'; break;
default: $_irep['{CURRENCY_SYMBOL}'] = '$';
}
(oops - make sure and set the Auastralin line to look the same as the USD one - it should be the raw "html entity" code but this forum is actually converting them).