Search found 67 matches

by RMcGirr83
07 Dec 2012, 03:24
Forum: Paypal Donation Mod
Topic: Before I install...Is there a Paypal "Gift" option?
Replies: 8
Views: 4871

Before I install...Is there a Paypal "Gift" option?

Gifts still cost money if gotten from outside the US and there is no option in the paypal API to set up gifts. You can, however, adjust the amount donated to have the fee and transaction amount added to the amount they donate.

https://www.paypal.com/webapps/mpp/paypal-fees
by RMcGirr83
04 Nov 2012, 12:29
Forum: Prettyphoto Attachment
Topic: Not Working for me
Replies: 7
Views: 4718

Not Working for me

martin123456 needs a name change to nub123456
by RMcGirr83
03 Nov 2012, 12:57
Forum: Prettyphoto Attachment
Topic: Not Working for me
Replies: 7
Views: 4718

Not Working for me

You could at least provide a link to where it isn't working I would think....or is one supposed to scan all your forums to find one?
by RMcGirr83
16 Oct 2012, 12:52
Forum: Top Stats
Topic: Top Stats Recent Active Topics Scroller not working
Replies: 31
Views: 10661

Top Stats Recent Active Topics Scroller not working

Seems to be working fine on my end.
by RMcGirr83
08 Oct 2012, 02:43
Forum: User Contributions
Topic: Countdown on index only
Replies: 3
Views: 2620

Countdown on index only

Steve© wrote:<!-- IF not S_IS_BOT and COUNTDOWN_ENABLE and SCRIPT_NAME eq 'index' --> :P
:P yourself

:P
by RMcGirr83
05 Oct 2012, 12:01
Forum: User Contributions
Topic: Vote for president!
Replies: 8
Views: 5718

Vote for president!

That switch is needed for the different databases RANDOM function which ever it may be. (ORDER BY RANDOM()';ORDER BY NEWID()';ORDER BY RAND()';)
by RMcGirr83
08 Aug 2012, 17:37
Forum: User Contributions
Topic: Smilies sliding
Replies: 10
Views: 6001

Smilies sliding

It has nothing to do with "being the eternal father" it has to do with following web standards which your code does not do. It's that simple.
by RMcGirr83
07 Aug 2012, 21:19
Forum: User Contributions
Topic: Smilies sliding
Replies: 10
Views: 6001

Smilies in scroll box

I can call anyone's mod that I have changed mine as long as I retain the original author credits. That's what GPL does. BTW <table border="1" bordercolor="#000000" width="auto" style="font-color:#000000"><tr> <td class="corpo" style="font-size:1...
by RMcGirr83
22 Jul 2012, 17:58
Forum: Forum Goal
Topic: Comma/Decimal point
Replies: 20
Views: 9438

Comma/Decimal point

Try instead

Code: Select all

number_format($forum_goals_posts_percent, 2, '.', '');
by RMcGirr83
22 Jul 2012, 16:14
Forum: Forum Goal
Topic: Comma/Decimal point
Replies: 20
Views: 9438

Comma/Decimal point

within the includes functions file you want to change all that are like this

Code: Select all

round($forum_goals_posts_percent)
to like this

Code: Select all

round($forum_goals_posts_percent, 2)