Forum Replies Created
-
AuthorPosts
-
November 1, 2011 at 10:25 pm in reply to: Customer sale not registering and emails not sending #38049adminKeymaster
I need to see the content of the “ipn_handle_debug.log” file. Please share the content of that file from your test transaction.
adminKeymasterYou can use the following function to find out of an affiliate is logged in or not:
aff_main_check_security()
The above function will return true if the affiliate is logged in or false otherwise.
Example usage code:
<?php
if(aff_main_check_security())
{
echo "Affiliate is logged in";
}
else
{
echo "Affiliate is not logged in";
}
?>November 1, 2011 at 10:12 pm in reply to: Different membership sign up levels on different pages #36675adminKeymasterWP eMember doesn’t have this option. Obviously one solution will not suit everyone’s need which is why we specify what eMember does on the documentation site.
adminKeymasterPost the content of the “ipn_handle_debug.log” file so I can take a look and see how the transaction went.
adminKeymasterDo you have a plugin similar to this one?
http://www.tipsandtricks-hq.com/wordpress-plugin-change-wp-email-from-details-1883
Plugins like that has the capability to change the “From Email Address” of all outgoing emails which could contribute to the notification email being different than what you entered. This will also make the AWeber parser to not work because it expects certain values in the email header so it can filter the signup requests.
adminKeymasterThe shortcode you are using was not implemented correctly (it doesn’t use the proper WordPress shortcode API). There is a proper shortcode for embedding a mp3 file that we added in our extra shortcodes plugin and you can use that. Check the extra eStore shortcodes list from this page:
http://www.tipsandtricks-hq.com/ecommerce/wp-estore-shortcodes-and-functions-reference-460
There are also more fancy display options available just to for music/mp3 display. Check the eStore’s product display templates:
http://www.tipsandtricks-hq.com/ecommerce/stylish-product-display-options-for-wp-estore-829
November 1, 2011 at 3:22 am in reply to: Customer sale not registering and emails not sending #38047adminKeymasterBefore running a test with debug you should always reset the debug log files so you get a clean capture. This is explained here:
https://support.tipsandtricks-hq.com/forums/topic/how-and-when-to-enable-debug-and-what-does-it-do
From your issue description it seems like the plugin is not even getting the payment notification from PayPal. There could be a few reasons for this to happen so go through this checklist and it will help you identify your mistake:
https://support.tipsandtricks-hq.com/forums/topic/what-to-do-if-the-debug-file-is-empty
adminKeymasterWill it help if I make it so the tax and shipping in the manual checkout email will only be displayed if they are not $0? So if there is no tax or shipping charge for a checkout it won’t show those.
adminKeymasterYour other post on this same issue has been replied here:
https://support.tipsandtricks-hq.com/forums/topic/user-registration-information-not-being-sent
adminKeymasterWhat are you using to create the membership payment button (eStore or plain PayPal button)?
October 31, 2011 at 11:09 pm in reply to: Coupon causing post processing failure with authorize.net #30191adminKeymasterI don’t remember the actual code change but there should be another way to get past it easily. Find the following block of code in the “eStore_process_payment_data.php” file and remove it (that should do the job):
if ($cart_item_data_total < $true_product_price)
{
eStore_payment_debug('Wrong Product Price Detected. Actual Product Price : '.$true_product_price,false);
eStore_payment_debug('Paid Product Price : '.$cart_item_data_total,false);
return false;
}adminKeymasterAdding a new payment gateway is a lot of work and require advanced PHP coding knowledge so it will be better for you if you find a solution that has the payment gateway you need built into the plugin.
I don’t know which payment gateway you are referring to but there is an addon we have which can add the following payment gateways to eStore:
– Google Checkout
– SagePay
– PayPal Payments Pro (this is a premium service from PayPal that lets you process credit card on your site)
– Authorize.net AIM (Advanced Integration Method that lets your process credit card on your site)
More details here:
https://support.tipsandtricks-hq.com/forums/topic/wp-estore-and-payment-gateway-bundle
adminKeymasterIt could be coming from the theme’s CSS so check the td and th attribute of your theme too.
adminKeymasterYou will need to modify the PHP files for that as we don’t have a HTML tag wrapped around those links so it will be hard to change their position.
adminKeymasterReplacing the plain PayPal button for membership with an eStore button is pretty easy. Simply watch the following video tutorial and set it up (first create a test membership level to test everything out then switch the plain PayPal button with the eStore button):
Checkout the video tutorials on this page for the affiliate plugin setup:
-
AuthorPosts