Anwar Khan
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Checkout fields are missing@pixeljule please check this thread to get the solution
https://ww.wp.xz.cn/support/topic/stripe-fields-are-not-showing-on-checkout-in-live-mode/- This reply was modified 6 years, 6 months ago by Anwar Khan.
ok finally problem is solved now
the problem is related to the SSL.
The SSL of site gets expired yesterday due to which stripe fields were not visible.
but today when we renew SSL everything start working again.Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Checkout fields are missingTh same problem is facing by me.
stripe fields are showing on test mode, but not on live modeForum: Plugins
In reply to: [WooCommerce] Perfect Money redirection problem with woocommerceYou need to put this code where you are redirecting by perfect money
Which is your blog page, in my case I use index.php as my default blog template file
If you have home.php then please put the code there.Forum: Plugins
In reply to: [WooCommerce] Perfect Money redirection problem with woocommerce@zechina can you make sure that the code is on the top, means before get_heder()
Forum: Plugins
In reply to: [WooCommerce] Perfect Money redirection problem with woocommerceYou’re welcome🙂
Forum: Plugins
In reply to: [WooCommerce] Perfect Money redirection problem with woocommerce@pixweb Did you try above solution
- This reply was modified 6 years, 9 months ago by Anwar Khan.
Forum: Plugins
In reply to: [WooCommerce] Perfect Money redirection problem with woocommerceok here is the solution
on the index.php means on your blog page use this code it will redirect you to the right place.$key = $_GET[‘key’];
$order = $_GET[‘order’];
$url = wc_get_checkout_url().”?key=”.$key.”&order=”.$order;
if(isset($key) && isset($order)){
wp_redirect($url);
exit();
}you need to put this code on top, before get_header().
- This reply was modified 6 years, 9 months ago by Anwar Khan.
Forum: Plugins
In reply to: [WooCommerce] Perfect Money redirection problem with woocommerceHi @haliday can I know what problem you are facing
Forum: Plugins
In reply to: [WooCommerce] Perfect Money redirection problem with woocommerceThanks @slash1andy for the reply
and yes you are right once we hit “Proceed to Payment”, then WooCommerce no longer controls what happens.
so i did some custom work to correct the plugin and it’s working now.
again thanks for your reply.