Rokeybur Rahman
Forum Replies Created
-
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] part_payment_widget for category loopcan you give me clue how i created based on current functions?
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Organisationsnummer and personal numberi think it save personal number for all orders. but maybe just add if user is person not company. normally company organization number save by default. anyway to add condition?
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Organisationsnummer and personal numberi need add this on theme function.php?
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] how to set on-holddoes it work with svea? we have HPOS enable also.
// change payment processing to on hold
add_filter( ‘woocommerce_payment_complete_order_status’, ‘rfvc_update_order_status’, 999, 2 );function rfvc_update_order_status( $order_status, $order_id ) {
$order = new WC_Order( $order_id );
//$paymethod = $order->payment_method_title;
if ( ‘processing’ == $order_status ) {
return ‘on-hold’;
}
return $order_status;
}Forum: Plugins
In reply to: [Seraphinite Accelerator] Category not purge?
Forum: Plugins
In reply to: [Seraphinite Accelerator] Category not purgeyes it clear cache of categories of that product. now how i can make it automated?
Forum: Plugins
In reply to: [Seraphinite Accelerator] When it retry again for cache build upIs there any time when it will be retry? because we setup interval long time here https://prnt.sc/8a2QcFtQKeHQ
Forum: Plugins
In reply to: [Seraphinite Accelerator] user cacheYes because product and other things is same for all users. only add to cart should work fine.
Forum: Plugins
In reply to: [Seraphinite Accelerator] user cacheBut it generate cache for every user when login in. i want one cache for all customer. is that possible?
Also how to preload user cache?
Forum: Plugins
In reply to: [Seraphinite Accelerator] No cache after add to cartBut that will do no cart item if someone do add to cart?
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Lot of pending orderOk i will update but i need another thing. we know when company order it save company reg number on database but it does not save for personal reg number before so then we use this code before.
inc/class-wc-gateway-svea-checkout.php
// Save personal registration number if ( ! empty( $response[‘Customer’][‘NationalId’] ) ) { $reg_ps_nr = trim( $response[‘Customer’][‘NationalId’] ); $wc_order->update_meta_data( ‘_svea_co_personal_reg_number_custom’, $reg_ps_nr ); }
but maybe this code updated on new version where i can add that feature?Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Lot of pending orderWe are using WooCommerce 5.0.0 and Svea Checkout för WooCommerce 1.18.0 and WordPress 5.6.8 .
Can we just update svea? because currently we can not update woocommere and wordpress.
Forum: Plugins
In reply to: [F4 Total Stock Value for WooCommerce] How to override fileOn Helpers.php and report.php I added extra meta key from cost of goods sold plugin. so i know what is my cost for stock.
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Order missingI can see some orders pending if not paid but that not show in woocommerce order list. only way i can visit those orders by url. why svea hide those pending payment orders? how can we show it.
Forum: Plugins
In reply to: [ATUM WooCommerce Inventory Management and Stock Tracking] Show supplier skuHow to get variation id or get supplier sku for variable product?