Re: Snap Affiliates v2.0 for v1.5.0 and later
Quote:
Originally Posted by
lat9
It's quite possible, you'll just need to merge the plugin's marked core- and template-file changes into your store's Zen Cart 1.5.5a file-set.
Not sure what that means but it sounds too complicated to me :)
Re: Snap Affiliates v2.0 for v1.5.0 and later
Quote:
Originally Posted by
lat9
It's quite possible, you'll just need to merge the plugin's marked core- and template-file changes into your store's Zen Cart 1.5.5a file-set.
DUDE, awesome! Your addon is GOLD! I got it working in 1.5.5a like a charm. I have attached modified the merged orders.php for you, in case you are thinking about making an official version for 1.5.5a of this module.
Cheers
D.C.
Re: Snap Affiliates v2.0 for v1.5.0 and later
Quote:
Originally Posted by
dachilla
DUDE, awesome! Your addon is GOLD! I got it working in 1.5.5a like a charm. I have attached modified the merged orders.php for you, in case you are thinking about making an official version for 1.5.5a of this module.
Cheers
D.C.
Thanks, D.C, for the report that you got Snap Affiliates working on 1.5.5a!
Re: Snap Affiliates v2.0 for v1.5.0 and later
I am running 1.5.5a
How can I change where it says Referrer Program to Affiliate Program? There are a few places.....like when you go to "my account" it says Referrer_Main_Title - REFERRER_ORDER_PAYMENT etc. can I change that to Affiliate instead of Referrer?
Re: Snap Affiliates v2.0 for v1.5.0 and later
Quote:
Originally Posted by
Hollywood691
I am running 1.5.5a
How can I change where it says Referrer Program to Affiliate Program? There are a few places.....like when you go to "my account" it says Referrer_Main_Title - REFERRER_ORDER_PAYMENT etc. can I change that to Affiliate instead of Referrer?
sorry, I can't edit or remove my question......I got it though. I do have something I can't figure out.
Under the payment type drop down there is only Check/money order there......how can I change that to just paypal? it doesnt even show that as an option.
Thanks for a great plugin
Re: Snap Affiliates v2.0 for v1.5.0 and later
Quote:
Originally Posted by
Hollywood691
sorry, I can't edit or remove my question......I got it though. I do have something I can't figure out.
Under the payment type drop down there is only Check/money order there......how can I change that to just paypal? it doesnt even show that as an option.
Thanks for a great plugin
To add PayPal as a payment method, you'll need to change Configuration->Affiliate Program->Enable PayPal Commission Payment Method to Yes (the default's No). There's currently no built-in way to disable the check/moneyorder payment method.
Re: Snap Affiliates v2.0 for v1.5.0 and later
Quote:
Originally Posted by
lat9
To add PayPal as a payment method, you'll need to change Configuration->Affiliate Program->Enable PayPal Commission Payment Method to Yes (the default's No). There's currently no built-in way to disable the check/moneyorder payment method.
Ahhh,.....thanks for pointing that out! I should have found that.
THANK You -
Re: Snap Affiliates v2.0 for v1.5.0 and later
I installed this with no problems, and the Configuration section is set up the way I want it. But I replied 'True' to having a link appear in the Information sidebox, and no link appeared. This could possibly be because I've added the extra pages add-on (and then added another one manually)? I can add the affiliate link manually too, if that's necessary, but would appreciate help with the files I'll need to change.
Re: Snap Affiliates v2.0 for v1.5.0 and later
You just missed a merge for /includes/modules/sideboxes/YOUR_TEMPLATE/information.php. Add the following code fragment in the position that you want the affiliates' link:
Code:
//-bof-snap_affiliates-lat9 *** 1 of 1 ***
if (SNAP_INFORMATION_SIDEBOX === 'true') {
$information[] = '<a href="' . zen_href_link(FILENAME_REFERRER_SIGNUP, '', 'SSL'). '">' . BOX_INFORMATION_REFERRER_TERMS . '</a>';
}
//-eof-snap_affiliates-lat9 *** 1 of 1 ***
Re: Snap Affiliates v2.0 for v1.5.0 and later
Thanks, that did it. I'm still trying to figure out exactly what to put in 'define_referral_terms' and 'define_referral_tools' but I'll get there.