Forum Replies Created
-
AuthorPosts
-
amin007
ParticipantUse the reset options under the “Admin Functions” menu in the eStore plugin.
amin007
ParticipantJust to eliminate any other possibilities… can you please do the following:
1) Deactivate and delete the existing WP eMember versions (make sure you do not have any copies of eMember lying around in the plugins directory)
2) Get a fresh build of eMember from here:
https://support.tipsandtricks-hq.com/update-request
3) Install this version then try it out.
If it does not make any difference please do the test mentioned here:
https://support.tipsandtricks-hq.com/forums/topic/test-to-identy-a-conflicting-theme-or-plugin
June 9, 2011 at 12:05 am in reply to: E-mail notification after purhase and when memberhip expires does not work #33109amin007
Participant“Yes, I connected another payment system to eStore” – That makes sense. The coding for this modification you did is incorrect. The payment gateway that you tried to add is not posting and payment notification data back to the plugin. It is beyond our support capability to troubleshoot someone else’s coding mistakes. Please contact the person who did this modification for you.
June 8, 2011 at 11:59 pm in reply to: Shipping Variation value not shown on paypal confirmation email #33112amin007
ParticipantIf I understand correctly the phrase “Postage and Packaging” has the same meaning as “Shipping and handling”. WP eStore sends the shipping amount via PayPal’s “Shipping and Handling” variable. You can tell eStore to send the shipping amount as simple shipping rather than “Shipping & Handling”. Please open the “eStore_payment_submission.php” file and look for the following line:
$myPaypal->addField('handling_cart', $shipping);Once you find it change it to the following:
$myPaypal->addField('shipping_1', $shipping);amin007
ParticipantLooks like the mailchimp API access was denied so it could not retrieve the lists or you do not have any mailchimp list in your account. Did you make a typo when you entered the API key or the username and password in the eStore’s mailchimp settings menu? Are you using the API key option or the username and password method for mailchimp authentication?
amin007
ParticipantPlease open the “wp_eStore1.php” file and search for the following line:
/*** PDT Stuff ***/You should be able to read the block of code there and figure it out.
amin007
ParticipantI have added the “Status” flag that lets you mark each transaction with a label (for example: “Paid”, “Unpaid” etc). When your customers checkout using the manual checkout mode the status of the transaction will be set to “Unpaid” by default. I still need to add the ability to you can sort transaction based on this “Status” column but that will come next.
You can get a new build of eStore from here:
amin007
ParticipantJust an update… you can simply do the following to enable auto member login after the registration:
Please open the “wp_eMember1.php” file and search for the following line of code:
define('WP_EMEMBER_ENABLE_AUTO_LOGIN_AFTER_REGO', false);Once you find it change it to the following:
define('WP_EMEMBER_ENABLE_AUTO_LOGIN_AFTER_REGO', true);amin007
ParticipantUpdate:
Nope, the alternate method (use one product as a template for every photo) does not have the option to use multiple products multiple gallery.
amin007
ParticipantThis thread refers to WP eStore but your post seems like it is related to WP eMember plugin. I am going to assume you mean WP eMember.
Search for the following in “wp_eMember1.php” file
return wp_emember_format_message ('<b>'. EMEMBER_HIDDEN_CONTENT_MESSAGE. '<br/>'.EMEMBER_PLEASE.' <a href=" '.$account_upgrade_url .'" target=_blank>'.EMEMBER_RENEW.'</a> '.EMEMBER_YOUR_ACCOUNT.'</b>');Once you find it replace it with the following:
return "";This will make it to where it does not show the warning to users who do not have the correct membership level to view a particular section protection.
amin007
ParticipantThe IPN (payment notification) is a background HTTP POST. When paypal sends the IPN to eStore there is not active user present so current user variable does not return anything.
If you have integrated the PDT then you should try to do this credit update work there as the current user will be active in the browser and it will have the details of this user.
amin007
ParticipantYou have checked the “Allow Free Membership” field and have entered the free membership level ID in the “Free Membership Level ID” field in the settings menu?
Please post a link to the registration page.
June 8, 2011 at 12:30 am in reply to: Shipping Variation value not shown on paypal confirmation email #33110amin007
ParticipantDid you use the following email tag in the email body?
{shipping_option_selected}All the usable email tags are documented on this page:
June 8, 2011 at 12:12 am in reply to: E-mail notification after purhase and when memberhip expires does not work #33107amin007
ParticipantThe payment parameters do not look right. Have you modified the eStore plugin yourself? Please post a link to the page where you have the payment button.
June 7, 2011 at 2:52 am in reply to: How to open "Terms and Conditions" page link from shopping cart in same window #28429amin007
ParticipantYou made a HTML coding error when you did the modification. The following should make it to where is opens in the same window:
$terms = "<a href="$terms_url"><u>".ESTORE_TERMS_AND_CONDITIONS."</u></a>"; -
AuthorPosts