Amrit Das
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Weird Order Pagethe solution i came with is:
Go into your database
Find wp_usermeta
Search in the meta_key column for “manageedit-shop_ordercolumnshidden”. Check the user ID in the column left to it. If you’re having problems with your admin account, the user ID will be 1. Otherwise you should look further for the right user ID with “manageedit-shop_ordercolumnshidden”.
Click on the left on Edit and change it’s value to a:0:{}
Reload your order dashboard and you’re check-all checkbox should be there.But do every user do this after woocommerce fresh installation?? THis should be solved by woocommerce team…
Forum: Plugins
In reply to: [WooCommerce] Weird Order PageAny one from woocommerce team please reply its urgent!!
Forum: Plugins
In reply to: [WooCommerce] Cancellation of productsYes u can do this Just paste this code in your theme functions.php
add_filter ( ‘wc_order_is_editable’, ‘sarvesh_add_order_statuses_to_editable’ );
function sarvesh_add_order_statuses_to_editable () {
return TRUE;
}Forum: Plugins
In reply to: [WooCommerce] Cancellation of productsyes we can do this by adding small snippet in your functions.php
Forum: Plugins
In reply to: [WooCommerce] Add Order again buttonHow do i change the css of woocommerce buttons ?
Forum: Plugins
In reply to: [WooCommerce] Display coupon used beside Discount in woocommerce mailadd_action( ‘woocommerce_email_after_order_table’, ‘add_payment_method_to_admin_new_order’, 15, 2 );
/**
* Add used coupons to the order confirmation email
*
*/
function add_payment_method_to_admin_new_order( $order, $is_admin_email ) {if( $order->get_used_coupons() ) {
$coupons_count = count( $order->get_used_coupons() );
$i = 1;
$coupons_list = ”;foreach( $order->get_used_coupons() as $coupon) {
$coupons_list .= $coupon;
if( $i < $coupons_count )
$coupons_list .= ‘, ‘;
$i++;
}echo ‘<p></p>’;
echo ‘<p>Credit(s) used (‘ . $coupons_count . ‘) : ‘ . $coupons_list . ‘</p>’;} // endif get_used_coupons
}This is only for admin email .
How can i include this coupon used in customer email also???Forum: Plugins
In reply to: [WooCommerce] Display coupon used beside Discount in woocommerce mailI want to show beside discount like as shown in the picture i attached
http://prntscr.com/duzq0cForum: Plugins
In reply to: [WooCommerce] Add Order again buttonhttp://prnt.sc/duzp07 image link
- This reply was modified 9 years, 2 months ago by Amrit Das.
MBString extension Yes Yes(present) But still Rs symbol is showing as ?
Yes i enabled Extended currency symbol support’ settings, But still not solved.