Forum Replies Created
-
AuthorPosts
-
admin
KeymasterThis is a caching related issue. It is likely your hosting provider is using caching on their end also. Please ask your hosting provider if they are using caching.
I will take a look at your site (I have sent you an email for it).
April 2, 2019 at 2:51 am in reply to: eStore – Customization of return button text not working #79412admin
KeymasterThe text you showed me in your screenshot is the one on the “pay” screen. The return button is shown after the payment (after the customer hit the pay now button on PayPal’s checkout page).
admin
KeymasterThere is a settings option for this. Look in the following settings interface
eStore Settings -> Advanced Settings -> Price Display Settings
March 27, 2019 at 6:52 am in reply to: Not getting entry to POST IPN to a 3rd Party Application #79395admin
KeymasterTroubleshooting custom code is beyond the scope of this support forum. You need to use the following option so a developer can go through your custom code and see what is going on:
March 27, 2019 at 6:39 am in reply to: How to set up percentage of entire's site sales to be sent as commission? #79400admin
KeymasterThat is not how a normal affiliate system works. So this will need some customization. Which e-commerce solution are you using?
March 27, 2019 at 6:16 am in reply to: Want option like [wp_cart_button name="Test Product" price="29.95"] #79398admin
KeymasterWhen I log into your site, I will be able to take a look at the sales tax issue and provide further help. I have sent you an email for it.
March 27, 2019 at 6:14 am in reply to: Sales taxes are not being collected in WP Paypal Shopping Cart v4.4.5 #79379admin
KeymasterI will log into your site and check the settings. I have sent you an email for it.
March 26, 2019 at 6:47 am in reply to: Not getting entry to POST IPN to a 3rd Party Application #79392admin
KeymasterYou only need to specify the URL where you want the IPN to be forwarded. It sends the IPN there. It is likely a firewall is blocking that post.
You can use the following action hook. It gets triggered after a payment is processed and added to the database:
eStore_product_database_updated_after_payment
Example code below:
add_action(‘eStore_product_database_updated_after_payment’, ‘my_custom_payment_tweak’, 10, 2);
function my_custom_payment_tweak($ipn_data, $cart_items)
{
//Do something here
}
admin
KeymasterPlease do the following:
https://support.tipsandtricks-hq.com/forums/topic/re-install-or-load-a-fresh-build-of-the-plugins
March 26, 2019 at 6:30 am in reply to: Access for a Short Time Period Anywhere Within a Longer Time Period #79383admin
KeymasterYeah sure.
admin
KeymasterThe field customization are done using the form builder addon. Are you using that addon?
https://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-form-builder-addon-extension-760
admin
KeymasterThat plugin is doing something weird that I have no idea about unfortunately. Normally, if it is a popular plugin on wordPress.org, we investigate it. Have you tried the following plugin to see if that provides a similar functionality:
March 25, 2019 at 4:49 am in reply to: Access for a Short Time Period Anywhere Within a Longer Time Period #79381admin
KeymasterHi Randal, There is no feature to do that at the moment.
March 25, 2019 at 4:48 am in reply to: Sales taxes are not being collected in WP Paypal Shopping Cart v4.4.5 #79376admin
KeymasterPayPal’s live account and Sandbox accounts do not share any settings (they are completely different). So just to confirm, did you set the sales tax in your PayPal sandbox account (if you are doing sandbox transaction)?
March 25, 2019 at 4:47 am in reply to: Let all traffic from a given IP address through paywall #79373admin
KeymasterThis will need custom coding.
If you use a WordPress plugin to do the broken links checking, then I believe it can work from inside (no need to use an external service).
-
AuthorPosts