Forum Replies Created
-
AuthorPosts
-
February 21, 2020 at 4:03 am in reply to: eStore Manual Checkout Form Builder AddOn not working #77430adminKeymaster
The voucher checkout has to collect some info so it can process it like a Paypal payment. It can’t be treated as a normal offline/manual payment. These two need to be separate. I can maybe do a customization for you but that will need to handled using the following:
adminKeymasterI have sent you an email so you can reply to it and attach the log file.
February 18, 2020 at 12:15 am in reply to: Error after purchase "Http error… could not establish a connection to paypal f #80304adminKeymasterCan you ask the hosting provider if they have seen any other sites on this server using PayPal having issue with establishing a connection to PayPal?
adminKeymasterLooks like you have the “encrypted button only” option enabled in your PayPal account. That will prevent any other transaction other than buttons created inside your Paypal account. So you need to uncheck that option if you want to use any plugin to accept payment.
Please watch the following video which has some explanation:
https://www.youtube.com/watch?v=xl7HMsqCNPQ
Let me know how you go after that.
February 13, 2020 at 12:48 am in reply to: wp emember member levels protecting Thrive Content Builder / Architech pages #80327adminKeymasterIt should work fine. I will give you a copy of it so you can test it out.
adminKeymasterPlease post the URL where I can go and use the button. Then I will be able to inspect things and see what is going wrong on this site.
adminKeymasterThis is not something we can handle as part of estore or emember plugin support. The license manager is actually for developers and it needs to be customized for each site based on the requirement of that site.
You can use the following option if you want to get some consultation on the license manager plugin:
February 11, 2020 at 10:54 pm in reply to: eStore – Bulk Item Purchase Addon – adding text before currency sign and price #80323adminKeymasterThank you. Look for the following function in the “estore-bulk-item-purchase.php” file of that addon:
eStore_bip_show_individual_item
That function handles the display of the rows. You should be able to change the code there.
More specifically, the following line outputs the price amount so you can change that:
$output .= '<div class="eStore-bip-price">'.print_tax_inclusive_payment_currency_if_enabled($ret_product->price,WP_ESTORE_CURRENCY_SYMBOL,'', $ret_product).'</div>';
February 10, 2020 at 10:29 pm in reply to: eStore – Bulk Item Purchase Addon – adding text before currency sign and price #80321adminKeymasterYes, that should be doable. I would like to see how it is showing on your site now so I can inspect it. Can you please post the URL where I can go and see this?
adminKeymasterAre you referring to the following import option for emember?
https://www.tipsandtricks-hq.com/wordpress-membership/bulk-member-data-importer-addon-853
If you have the debug logging option enabled in emember, then do you see the following line in the log file?
Member password reset email sent to XXXX
adminKeymasterGlad to hear that your hosting provider was able to fix this.
adminKeymasterThank you for posting the log file data. I can see the issue now. Your paypal merchant account is not fully setup to accept online payments. So the funds are going into a pending state (after you receive a payment). That needs to be fixed.
Please read the following post which will help you address the paypal account setup/configuration issue so the funds automatically/immediately clear after payment:
https://support.tipsandtricks-hq.com/forums/topic/reasons-for-a-pending-paypal-payment
adminKeymasterYou can use our free stripe payments plugin (which has emember integration) to accept membership payments via Stripe:
https://wordpress.org/plugins/stripe-payments/
Integration details here:
Alternatively, if you are using the WP estore plugin then you can also accept Strive via that plugin.
adminKeymasterCouple of things you need to understand.
The paypal receipt email comes from their server which is properly configured and will always work. The sale notification email (with the digital download) goes out from your server. That will not happen if the PayPal’s payment notification is not being received by the plugin at all. The paypal’s notification is called IPN which paypal sends to scripts for processing purpose. This is not the same as PayPal’s email. I was just pointing out that PayPal may not be able to send that IPN message (not an email) to a non-live server. Which means the plugin will never know when a sale happens and it won’t be able to function normally. Do a google search to understand about the PayPal’s IPN if you are not familiar with that.
Have you done a test transaction with the following feature as mentioned in my previous post?
https://support.tipsandtricks-hq.com/forums/topic/how-and-when-to-enable-debug-and-what-does-it-do
February 5, 2020 at 1:39 am in reply to: Wp emember – showing a page but protecting against downloads #80308adminKeymasterThe best option is to use section protection in my opinion:
https://www.tipsandtricks-hq.com/wordpress-membership/how-to-protect-a-section-of-a-post-or-page-88
For the download section, you will have two sections there. One for the logged-in member who will see the download button. Then just above or below that button, you will have another section for the NON-members who will see a message saying something like “Become a member to download”.
For example, the following two section protection will be applied in that page. Only one of those will be seen by the user (based on if they are a member or not)
[emember_protected scope=”not_logged_in_users_only”]
Whatever content goes here is only visible to a non-logged in user. Add your message telling them to become a member.
[/emember_protected]
[emember_protected for=”2″ do_not_show_restricted_msg=”1″]
The actual download button goes here. This will be seen by members of membership level 2 for example.
[/emember_protected]
-
AuthorPosts