How to re-direct after a user upgrade purchase subscription?

surfsup

Well-known member
After someone purchases a user upgrade subscription, how can I set it that it will take them to a certain landing page with a break down of the features we offer them?
 
Admin CP -> Appearance -> Templates -> account_upgrades

This form field defines the return URL:

Code:
<input type="hidden" name="return" value="{$requestPaths.fullBasePath}{xen:link account/upgrade-purchase}" />

The content of that return page is defined by this template:

Admin CP -> Appearance -> Templates -> account_upgrade_purchase
 
Hi Jake,
I don't see any return page defined in account_upgrade_purchase:

Code:
<xen:title>{xen:phrase account_upgrade_purchased}</xen:title>
 
<p>{xen:phrase thank_you_for_purchasing_this_upgrade}</p>
 
<p>{xen:phrase when_payment_has_been_approved_your_account_will_be_upgraded}</p>

Not sure what I'm missing but I'm sure i am!
 
The URL of the return page is defined in the account_upgrades template. See my previous post.

Rich (BB code):
<input type="hidden" name="return" value="{$requestPaths.fullBasePath}{xen:link account/upgrade-purchase}" />
 
Top Bottom