Forum Replies Created
-
AuthorPosts
-
admin
KeymasterThe test worked fine for me. I sent you email with screenshot.
I would like to check a couple more things. You have got a few things broken on your admin side that you need to fix so I can correctly navigate your site to do the troubleshooting.
I have no way to go to your plugins menu at the moment. You have got a plugin breaking your plugins page’s functionality completely. If i click plugins menu, it just takes me to the dashboard of a weird plugin?
July 6, 2016 at 4:37 am in reply to: Receipt Creator – No Payment Details In The Receipt After Recurring #73613admin
KeymasterRecurring payments are not recorded by the plugin by default.
You can enable it from the settings.
eStore Settings -> Advanced Settings -> Capture Recurring Payment Sales Data
The receipt creator addon doesn’t do anything with subsequent payment at the moment. It only sends a receipt for the main product.
admin
KeymasterDid you say, you want to include the price in your product configuration? If you do that then you don’t need to do this whole tax thing. Because you would just tell people that the price includes tax.
You have to pick one model then stick with it. Can’t go half and half.
admin
KeymasterYoutube doesn’t allow you to download videos. This is how YouTube works.
If you want to offer a download of that video then you have the following option:
1) Upload your video to your server (alternatively, you can also use Amazon S3 if you want to)
2) Then use that video URL to create a new eStore product so you can configure the download.
3) Use the secure download button shortcode to offer download of that item from your Pay Per View page.
July 5, 2016 at 4:57 am in reply to: Integration with WooCommerce – Registration Link Doesn't Work #73612admin
KeymasterHi Laura, If a user makes a payment without being logged into the site (meaning they are making a payment as an anonymous user) then the plugin will assume that they don’t have an account yet. So it will send that registration link.
So you just have to re-check your registration flow according to what you need. There are a couple of options for you. Which of the following options are you using?
https://www.tipsandtricks-hq.com/wordpress-membership/woocommerce-wp-emember-integration-1013
Also, have you enabled the following option already?
admin
KeymasterThis issue usually arises from the way it is tested. Remember that if you are checking from different computers on your house, they will ALL have the same true IP address. Your connection provider will give you one IP address which you will be sharing among all your devices.
admin
KeymasterI will jump on your site to take a look. I have sent you an email for it.
admin
KeymasterWhat shortcode are you using? Copy and paste the shortcode. Also, share a link to the page where you have the button.
admin
KeymasterI see no issue with it. Here is what I see (tested in multiple browsers):
https://www.dropbox.com/s/qiih0l7y9jcaaoc/screenshot.jpg?dl=0
There has to be some kind of weird issue going on somewhere on your site. Do you only see it on that SAME photo all the time? or does that change?
Does your hosting provider use any caching on their end? Do you use any CDN services?
Did you already try the following theme test?
https://support.tipsandtricks-hq.com/forums/topic/test-to-identy-a-conflicting-theme-or-plugin
admin
KeymasterWhen I go to that URL, it gives me a DNS error. So your site is not even accessible from the external world? CCBills notification is not going to reach your site if it can’t be accessed from the external world. Thats the first issue you gotta fix with your hosting provider.
July 3, 2016 at 5:39 am in reply to: WP LightBox Ultimate – Cloudfront Missing Instructions ? #73596admin
KeymasterThe cloudfront videos work for sure (we tested it). We will update the documentation so it matches with the current interface so there is less confusion. We will get back to you.
admin
KeymasterThe way we handle it is that you create various discount coupons with different discount percentages. Then offer those coupons to the members.
They can then use it and get the discounts accordingly.
We also have the following addons which maybe of some use for you (the first one has an option to configure discounted pricing for members)
https://www.tipsandtricks-hq.com/ecommerce/wp-estore-members-only-download-button-addon-1718
admin
KeymasterLets check and make sure the webhook URL you are using in CCBill is actually accessible. What is the webhook URL that you used there?
July 3, 2016 at 3:53 am in reply to: Negative Variation price fails to send email or show order #73512admin
KeymasterThat confirms that the code wasn’t getting executed when the IPN is received (IPN is a background post so that works a little differently than a standard page loading.
You should be able to copy that code and put it in a small custom plugin. A plugin with just your tweaks and hacks. That is a better way to handle this than to use functions.php file. Because the custom plugin will stay there even if you change your theme.
Making a custom little plugin is very easy. The following tutorial will teach you the basics that you need to know:
https://www.tipsandtricks-hq.com/how-to-create-a-wordpress-plugin-video-tutorial-4547
Let me know if that helps.
July 2, 2016 at 2:33 am in reply to: eStore: make ClickBank Buy Now button open in new window #73575admin
KeymasterOpening the buy button in a new window is not a standard practice.
You can use the following tweak to get it done.
1) Open the following file from the gateway bundle addon:
wp-payment-gateway/wp_pg_misc_functions.php
2) Search for the following line of code in that file:
$output .= '<form action="'.$action_url.'" method="post">';
3) Replace it with the following:
$output .= '<form action="'.$action_url.'" method="post" target="_blank">';
That should do it.
-
AuthorPosts