The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
I posted a message on the Jorx Jam Affiliate site for help also but no response yet. This is an affiliate software that is suppose to allow me to give out commission to members who refer other for paid subscriptions. However their instructions seem to be a bit flawed. Here they are:
Code:
JAM can be integrated with VBulletin when you use VBulletin for Paypal Subscriptions. To integrate JAM with VBulletin, follow these steps: Code:
Edit the template record to have the following. Make sure to backup this data first! ".(($show['recurring']) ? (" <input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" /> ") : (" <input type=\"hidden\" name=\"cmd\" value=\"_xclick\" /> "))." <input type=\"hidden\" name=\"business\" value=\"$settings[ppemail]\" /> <input type=\"hidden\" name=\"item_name\" value=\"$subinfo[title] Subscription\" /> <input type=\"hidden\" name=\"item_number\" value=\"$item\" /> <input type=\"hidden\" name=\"currency_code\" value=\"$currency\" /> ".(($show['recurring']) ? (" <input type=\"hidden\" name=\"a3\" value=\"$cost\" /> <input type=\"hidden\" name=\"p3\" value=\"$timeinfo[length]\"> <input type=\"hidden\" name=\"t3\" value=\"$timeinfo[units]\"> <input type=\"hidden\" name=\"src\" value=\"1\"> <input type=\"hidden\" name=\"sra\" value=\"1\"> ") : (" <input type=\"hidden\" name=\"amount\" value=\"$cost\" /> "))." <input type=\"hidden\" name=\"no_shipping\" value=\"$no_shipping\" /> <input type=\"hidden\" name=\"shipping\" value=\"0.00\" /> <input type=\"hidden\" name=\"return\" value=\"" . $GLOBALS['vbulletin']->options['bburl'] . "/" . $GLOBALS['vbulletin']->options['forumhome'] . ".php\" /> <input type=\"hidden\" name=\"cancel_return\" value=\"" . $GLOBALS['vbulletin']->options['bburl'] . "/" . $GLOBALS['vbulletin']->options['forumhome'] . ".php\" /> <input type=\"hidden\" name=\"notify_url\" value=\"" . $GLOBALS['vbulletin']->options['bburl'] . "/payment_gateway.php?method=paypal&jrox=" . $_COOKIE['jrox']."\" /> <input type=\"hidden\" name=\"custom\" value=\"$userinfo[username]\" /> <input type=\"hidden\" name=\"no_note\" value=\"1\" /> ".(($show['notax']) ? (" <input type=\"hidden\" name=\"tax\" value=\"0.00\" /> ") : (""))." I mainly need to be able to get the cookie in the link somehow. (See the bold red in the code above). You'll notice that it has extra periods and slashes. When I just add that section I get errors in my template. Here is my template code: Code:
<if condition="$show['recurring']"> <input type="hidden" name="cmd" value="_xclick-subscriptions" /> <else /> <input type="hidden" name="cmd" value="_xclick" /> </if> <input type="hidden" name="business" value="$settings[ppemail]" /> <input type="hidden" name="item_name" value="<phrase 1="$subinfo[title]">$vbphrase[x_subscription]</phrase>" /> <input type="hidden" name="item_number" value="$item" /> <input type="hidden" name="currency_code" value="$currency" /> <if condition="$show['recurring']"> <input type="hidden" name="a3" value="$cost" /> <input type="hidden" name="p3" value="$timeinfo[length]"> <input type="hidden" name="t3" value="$timeinfo[units]"> <input type="hidden" name="src" value="1"> <input type="hidden" name="sra" value="1"> <else /> <input type="hidden" name="amount" value="$cost" /> </if> <input type="hidden" name="no_shipping" value="$no_shipping" /> <input type="hidden" name="shipping" value="0.00" /> <input type="hidden" name="return" value="$vboptions[bburl]/$vboptions[forumhome].php" /> <input type="hidden" name="cancel_return" value="$vboptions[bburl]/$vboptions[forumhome].php" /> <input type="hidden" name="notify_url" value="$vboptions[bburl]/payment_gateway.php?method=paypal" /> <input type="hidden" name="custom" value="$userinfo[username]" /> <input type="hidden" name="no_note" value="1" /> <if condition="$show['notax']"> <input type="hidden" name="tax" value="0.00" /> </if> Jason |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|