Forum Replies Created
-
AuthorPosts
-
adminKeymaster
I saw that Ivy sent you an email to get site access. I will look into it when you reply the email.
adminKeymasterYour settings look good. You mentioned that you are using option 1 from this documentation:
Why do you have the following line of code in your PayPal button if you are using option 1?
<input name="notify_url" type="hidden" value="http://www.bizappfusion.com/wp-content/plugins/wp-affiliate-platform/api/ipn_handler.php" />
Please follow the instruction closely and do exactly as it says.
While you are at it, please do the following too (this will eliminate any possibility of a file getting corrupted and misbehaving):
1. Deactivate and delete the currently installed version of the plugin(s).
2. Download a fresh build of the plugin(s) from here:
https://support.tipsandtricks-hq.com/update-request
3. Update the plugin following the appropriate update instruction for the plugin in question:
https://support.tipsandtricks-hq.com/plugin-installation-and-upgrade-instructions
September 3, 2011 at 11:53 pm in reply to: Trouble with sales, money comes through, no email with download link #36139adminKeymasterPlease run a test transaction with debug enabled and share the debug file content which will reveal the issue:
https://support.tipsandtricks-hq.com/forums/topic/how-and-when-to-enable-debug-and-what-does-it-do
adminKeymasterTo me the obvious thing to guess about this error is that… your server is using an older version of PHP and the plugin requires v5.2 or higher. So upgrading your server’s PHP version should help.
However, this is not related to any of our plugins so its best not to take my advise. Please contact the developer of the plugin who should know more.
September 3, 2011 at 11:16 pm in reply to: wp_emember_is_member_logged_in() not working in a page #36202adminKeymasterYou are placing a PHP function straight into a WordPress page?
adminKeymasterAdded an option that will allow the admin to see individual affiliate’s click data from the affiliate admin dashboard. Please get a new build of this plugin from here to get this:
https://support.tipsandtricks-hq.com/update-request
You can go to the following area to see this new option:
WP Affiliate Click Throughs -> Individual Affiliate Click Data
adminKeymasterEnter a value in the following field:
WP eMember settings -> Pages/Forms Settings -> Member Profile Edit Page
The help text of that field will tell you what to do.
September 3, 2011 at 5:09 am in reply to: Execute custom function after registration of a specific level – API or Hooks? #33719adminKeymasterI updated this hook to send the custom field data in a separate array. Use the following sample code to find out how it works:
function handle_eMember_registration_complete_event($member_data,$custom_fields)
{
//The following line will print all the member details that got passed to this function via the $member_data array.
//You can use this data however you like it.
print_r($member_data);
echo "<br />Custom fields data shown below<br />";
print_r($custom_fields);
}
add_action('eMember_registration_complete','handle_eMember_registration_complete_event',10,2);adminKeymasteryeah that should be possible too.. I just need to find some time to add this.
September 3, 2011 at 2:07 am in reply to: order won't go throuth with coupon – please help, going live today #36096adminKeymasterI have added some more debug around this post payment coupon check area that should reveal what is going on.
Please get a new build of the plugin from here then do another test transaction and share the debug:
September 3, 2011 at 2:00 am in reply to: "WP eStore – Payment Verification Failed!" e-mail messages #36191adminKeymasterFor subscription payments the amount in the price field doesn’t actually matter for the actual payment (the actual values are taken from the subscription section). This allows you to specify a explanatory value in the price field (for example: 7 USD trial then 29 USD per month)… this comes in handy when using a fancy product display.
So, you have two options:
1) Either use a value like the following in the price field for subscription:
7 USD trial then 29 USD per month
2) or use a value that is lower than your previous recurring amount in the “Price” field of the product. This will make it to where this post payment check will pass.
adminKeymasterI sent you an email to get site access so I can check it out… it shouldn’t be that hard to track.
September 3, 2011 at 1:46 am in reply to: Problem with dowloading products and Internet Explorer #36179adminKeymasterYou shouldn’t need to change any code in the plugin to make a download work in IE (eStore’s download works in all major browser… remember, a lot of users are using it).
The only time you will see an issue if there is some setup in the server going wrong which makes the whole process suffer. Sometimes this can even come from another plugin. So instead of going for the workaround… I would try to identify the root cause first.
Do you have a caching plugin active? Caching plugins can send gzipped content (if you are using that option) and earlier versions of IE doesn’t handle that very well.
adminKeymasterTry this option… it is more flexible and robust (the video tutorial should explain everything):
September 3, 2011 at 1:36 am in reply to: Add Google Analytics tracking for [wp_eStore_buy_now_custom_button] shortcode? #36190adminKeymasterThe only eCommerce tracking feature offered by eStore is explained here:
http://www.tipsandtricks-hq.com/ecommerce/google-analytics-e-commerce-tracking-for-wp-estore-850
-
AuthorPosts