james400studio
Forum Replies Created
-
Forum: Plugins
In reply to: [Side Cart Woocommerce | Woocommerce Cart] Premium Plugin brokenResolved Thanks
@pavloborysenko
Hey,
Don’t want to paste my website link here. Any other way I can send it?Forum: Plugins
In reply to: [Wallet for WooCommerce] Default order status@subratamal Update : sorry, I need to change the status to “wallet-recharge” of wallet top up order. I have already created custom “wallet-recharge” status. I tried this below code, but the wallet top is not showing in the wallet. So I guess it first needs to be marked as completed and then changed to “wallet-recharge”. Your help would be appreciated.
Here’s the code I tried –
add_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 = 'wallet-recharge'; } return $status; } }
- This reply was modified 5 years, 2 months ago by james400studio.
- This reply was modified 5 years, 2 months ago by james400studio.
Forum: Plugins
In reply to: [Wallet for WooCommerce] Default order statusHey,
Found the issue. Actually it marks order “completed’ when the order payment is done via woo wallet.I actually need to mark the “wallet recharge order” as “completed” and not the orders paid through wallet.
Sorry for the confusion.
- This reply was modified 5 years, 2 months ago by james400studio.
Forum: Plugins
In reply to: [Wallet for WooCommerce] Default order statushey @subratamal ,
Appreicate your help but this code is not working. I pasted this code in my theme’s function.php file, but the order status is still getting set to “processing”.Forum: Plugins
In reply to: [Wishlist] How do I change “heart” iconHey,
I will purchase the Pro plugin. But in the free plugin when I change the colors, it doesn’t work. It stops changing colors. Only works with default red and black color.
So when I click on ‘favorite’ heart icon, it shows the gear and then back to the original color.