designersa
Forum Replies Created
-
Forum: Plugins
In reply to: [Glossary] The glossary does not appear in the middle of the sentenceSame problem here, also in Chinese.
Forum: Plugins
In reply to: [Wallet for WooCommerce] Set the default status of top up orders to CompletedHi, @subratamal
I didn’t change the default order status for normal purchase so the order status after purchase remains in “on-hold”. I’m ok with that~What I need now is to let the users use their money is this virtual wallet immediately after top-up.
I added this code you provided here https://ww.wp.xz.cn/support/topic/set-default-order-status-to-on-hold/ in function.phpadd_filter('woocommerce_payment_complete_order_status', 'woocommerce_payment_complete_order_status_callback', 10, 3); if (!function_exists('woocommerce_payment_complete_order_status_callback')) { function woocommerce_payment_complete_order_status_callback($status, $order_id, $order) { if (is_wallet_rechargeable_order($order)) { $status = 'completed'; } return $status; } }(I only changed $status=’on-hold’; to $status=’completed’;)
However, after the user top-up their wallet, they still need to wait for me changing the top-up order into “completed” status, then they can see money come into their virtual wallet.Did I do anything wrong?
Forum: Plugins
In reply to: [Wallet for WooCommerce] Set the default status of top up orders to CompletedHi, thanks for reply.
I’m not sure what kind of data do you need
I took a look of the fields
“_VIP_woocommerce_log” and “_VIP_woocommerce_payment_tokens”
in my database and found no records there. (Did you mean this information?)Is it because I’m using the Paypal sandbox?
And is it the reason why the top-up oders stay at on-hold status?Forum: Plugins
In reply to: [Wallet for WooCommerce] Set the default status of top up orders to Completed@subratamal Hi, just a soft reminder~~ any updates?
Forum: Plugins
In reply to: [Wallet for WooCommerce] Set the default status of top up orders to Completed@subratamal
Hi, I’m using Paypal- This reply was modified 7 years, 1 month ago by designersa.
Forum: Themes and Templates
In reply to: [OceanWP] OceanWP pagination doesn’t show in my custom templateHi Amit
Thanks for your reply.
I tried to remove the pagination code<?php // Display post pagination oceanwp_blog_pagination(); } } ?>but it came to HTTP ERROR 500
I also read your tutorial of how to display post from certain categories, but it’s not what I need now. I want to make a category page combining multiple categories.
Thank you for sharing!- This reply was modified 7 years, 1 month ago by designersa.
Forum: Plugins
In reply to: [Plugin: Register Plus Redux] Conflicts with SexybookmarkI solved it!!!
by ticking “Load scripts in Footer” in Sexybookmarks…..