Forum Replies Created
-
AuthorPosts
-
admin
KeymasterThe code may look the same but it will be slighly different. Your affiliate can also create another account and then use the affiliate code from this new account on the other page.
admin
KeymasterHi Michael, That is issue is coming from your shopping cart plugin not the affiliates manager plugin. The affiliate manager plugin does not render the cart page. Have you asked the developer of the shopping cart this question? Which one are you using?
November 4, 2014 at 12:04 am in reply to: Affiliate registration email contains no username or password. #355admin
KeymasterGlad to hear that it is working now.
October 31, 2014 at 11:03 pm in reply to: Affiliate registration email contains no username or password. #352admin
KeymasterYeah that is the issue. somehow the following message is missing from your install:
affiliate_application_approved_email EMAILDid you by any chance delete any of these messages? What happens if you delete the plugin then re-install?
October 29, 2014 at 11:36 pm in reply to: Get Affiliate's Username by their Affiliate ID/RefKey #349admin
KeymasterYeah, that code should be a good example for you.
October 29, 2014 at 12:25 am in reply to: Affiliate registration email contains no username or password. #347admin
KeymasterDo you have the following email shortcodes/tags in the “affiliate_application_approved_email” email message?
Username: {affusername}
Password: {affpassword}
Login URL: {affloginurl}You can check all your affiliate email messages from the Settings -> Messaging interface of the affiliates manager plugin.
October 27, 2014 at 10:59 pm in reply to: Post any affiliate manager plugin questions or issues in this forum #345admin
KeymasterCan you please post a link to your store page? Which payment gateway are you using?
October 23, 2014 at 11:35 pm in reply to: How can I change the "My first list" to reflect for example " … Affiliates" #342admin
KeymasterIs this a signup confirmation message from your autoresponder provider (example: Mailchimp)?
admin
KeymasterOpen the following file:
source/Plugin.phpNow, find the following function and edit it to what you want:
public function doLoginShortcode()admin
KeymasterDid you overwrite any existing translation files or created new ones for your language?
admin
KeymasterHere is an exmaple snippet of code to retrieve an affiliates profile using email then getting the AID value:
global $wpdb $affiliate_email = "[email protected]";//TODO - enter the affiliate's email $tabl_name = WPAM_AFFILIATES_TBL; $affiliate = $wpdb->get_row("SELECT * FROM $tabl_name WHERE email = '$affiliate_email'"); if($affiliate){ //Found an affiliate record $aid = $affiliate->affiliateId;//Value of AID }admin
KeymasterNo, those shortcodes are needed for the plugin to function. I think you are trying to change the output of the shortcode. That kind of change will need code editing. Are you a developer?
October 19, 2014 at 10:48 am in reply to: Get Affiliate's Username by their Affiliate ID/RefKey #330admin
KeymasterFrom the WP user ID, you can get the email address of that user. Using that email address, you can query the affiliate plugin’s table and get the AID.
admin
KeymasterYou can edit the page from the WordPress editor and change the page title to whatever you want.
The terms and conditions can be editable from the settings area of the plugin.
admin
KeymasterI don’t have a 100% clear picture of what you are trying to do so my answer is not going to be the best unfortunately. I am assuming that you will have the user’s email address from the other plugin? You should be able to retrieve the affiliate’s profile/record using the email address (instead of AID). Then get the strRefKey of that affiliate. Won’t that work?
-
AuthorPosts