vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Paypal currencies (https://vborg.vbsupport.ru/showthread.php?t=74279)

ZGeek 01-12-2005 08:56 PM

Paypal currencies
 
Does anyone know how to mod the subscriptions in vbulletin to accept Australian money? Paypal has just started supporting it.

trafix 01-12-2005 09:11 PM

yep ....

in the template look for a hidden tag that will say something like
PHP Code:

<input type="hidden" name="mc_currency" value="USD" /> 

change to (if this tag isnt there add below)
PHP Code:

<input type="hidden" name="mc_currency" value="AUD" /> 


ZGeek 01-12-2005 09:21 PM

I just edited the admincp/subscriptions.php

I changed the code

from this
PHP Code:

    print_input_row($vbphrase['cost_in_us_dollars'], 'sub[cost][usd]'number_format($sub['cost']['usd'], 2));
    
print_input_row($vbphrase['cost_in_pounds_sterling'], 'sub[cost][aud]'number_format($sub['cost']['gbp'], 2));
    
print_input_row($vbphrase['cost_in_euros'], 'sub[cost][eur]'number_format($sub['cost']['eur'], 2)); 

to this
PHP Code:

    print_input_row($vbphrase['cost_in_us_dollars'], 'sub[cost][usd]'number_format($sub['cost']['usd'], 2));
    
print_input_row($vbphrase['cost_in_aud'], 'sub[cost][aud]'number_format($sub['cost']['aud'], 2));
    
print_input_row($vbphrase['cost_in_euros'], 'sub[cost][eur]'number_format($sub['cost']['eur'], 2)); 

I also edited the functions_subscriptions.php in the includes.
PHP Code:

// ######################## Define supported curencies ###################
$_SUBSCRIPTIONS['curencies'] = array(
    
'paypal'    =>    array('usd' => true'aud' => true'gbp' => true'eur' => true),
    
'nochex'    =>    array('gbp' => true),
    
'worldpay'    =>    array('usd' => true'gbp' => true'eur' => true),
    
'authorize'    =>    array('usd' => true'gbp' => true'eur' => true

It seems to be doing the trick.. hopefully im not breaking anything.. im fairly new to this.

trafix 01-12-2005 09:29 PM

I havnt had time to look into it myself so i was just guessing there ... but i hope i pointed you in the right direction anyway

Ps you will have to add a phrase to the control canel global phrasegroup

cost_in_aud ---> Cost In AUD

or something like that

ZGeek 01-12-2005 09:33 PM

yup done that too.. I just updated my post with an extra bit.

ZGeek 01-12-2005 11:22 PM

Looks like this doesn't work.. the payment goes through but the account is not updated. Any suggestions?

trafix 01-12-2005 11:26 PM

hmmm, dunno ... i havent looked into it ... however i presume that the required changes will be done for the next release ... maybe ask @ vbcom

ZGeek 01-12-2005 11:33 PM

have done. I'll keep playing with the code then :)


All times are GMT. The time now is 02:42 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01083 seconds
  • Memory Usage 1,738KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (8)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete