akash000ahammed
Forum Replies Created
-
Ok I found the solution, in new woo update they intruduced HPOS (?High-performance order storage), for this woo order table was conflicting with this plugin.
I disabled HPOS from woocommerce->setting->advanced->features-> moved from HPOS to ?WordPress posts storage (legacy). That solved the issue. Now no conflicts, and trns id, phone number all showing perfectly in order page.
Also I added another custom column to see from which method customers paying, wether it’s bkash, nagad or rocket. Maybe in next update you guys can try to add this. This will be helpful for owners who have big orders everyday.
add_filter( 'manage_edit-shop_order_columns', 'akash_add_new_order_admin_list_column' );
function akash_add_new_order_admin_list_column( $columns ) {
$columns['payment_method'] = 'Payment Method';
return $columns;
}
add_action( 'manage_shop_order_posts_custom_column', 'akash_add_new_order_admin_list_column_content' );
function akash_add_new_order_admin_list_column_content( $column ) {
global $post;
if ( 'payment_method' === $column ) {
$order = wc_get_order( $post->ID );
echo $order->get_payment_method_title();
}
}Thanks.
Sadly That didn’t worked brother. Is there any other way?
Wc Vendors has this option, but I really don’t want to switch ??
Hi, Thanks for your reply.
This feature looks like a important one.
Will request you guys to work on it and make it avail in future updates.Thank you, best LMS plugin ever.
Forum: Plugins
In reply to: [Site Reviews] Form Assigned to woo product, review not showing.I am using this, the woo-commerce product id is “2447”.
[site_reviews_form assign_to=”2447″]
If you check this screenshot you will find out the assigning process is working.
https://snipboard.io/mjVp9B.jpgMy problem is even after approving the review, it is not showing on my single product page review tab. I want to show customers given review their as a normal woo-commerce product review, is this possible?
The product link-> https://dreamlove1000.com/product/dream-love-1000-attraction-perfume/#reviews
Forum: Plugins
In reply to: [Orders Tracking for WooCommerce] Order export is not workingLittle confuse,
Say, I have five orders that I shipped.
All of them have different tracking codes.
so if I only use order id, tracking code, and carrier in CSV file all different tracking codes will be added to those orders listed in the CSV order id column right?
Forum: Plugins
In reply to: [Orders Tracking for WooCommerce] Order export is not workingHi, lets say if i don’t add item id in my csv file while tracking codes importing? Will the importing work?
I want to use only order id, tracking code and carier, this 3 colomn. Will the import work?
Forum: Plugins
In reply to: [Wallet for WooCommerce] Checkout notice changeCan you please help me to write this code,
Like I want to add this text
Your Order has ($ amount) in eligible health credit, please register for a membership to claim credits. Already a member, login to claim credits on this order.
It will be great help…
Thank you…
Forum: Plugins
In reply to: [Wallet for WooCommerce] Disable cashback for subscriber user role.Yes, I am using woocommerce martfurty theme, and i have placed the code in actove theme function.php file from theme ediyor area of wordpress dashboard.
But it is not working, can you please tell me some other way if there is any? That will be a great help.
Forum: Plugins
In reply to: [WooCommerce] Checkout Page Shrinks.Thank you, I have disabled the construction mode, please have a look again. In my end looks fine also, also want to confirm from you that.
Forum: Plugins
In reply to: [WooCommerce] Checkout Page Shrinks.Hi,
can you see the checkout page looks fine or not?
in my end, it now looks fine, but I don’t know is it showing for page cache or not.
No, Actually I am talking about, Vendor capabilities, when they create a product, that publish on the site automatically, I want to enable product pending and manual admin approval option, is that function comes with ultimate version?
Thank You Toengel.
Version 2.0.0 is working fine for me.