johnson0118
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] update version 5.5.0 with bug when search by sku@tibetanitech Hello, I have contacted author of “Search By SKU – for Woocommerce” plugin to solve the problem. Plugin works correctly now. Thank you.
@mattsgarage Thank you very much for fixing. I will rate the plugin 5 stars.
Forum: Plugins
In reply to: [WooCommerce] update version 5.5.0 with bug when search by skuHi @abwaita and @flyingfinn64 ,
You can install “Search By SKU – for Woocommerce” plugin on your website. Then, you will know what I say on woocommerce. It seems that woocommerce plugin doesn’t support to search products by sku.- This reply was modified 4 years, 10 months ago by johnson0118.
Forum: Plugins
In reply to: [Quotes for WooCommerce] How to Add Sku to quote Email@pinalshah Thank you for your response. I recently found a method to add sku to quote Email. Add below code to foreach loop and <tr> tag, it works well.
// add sku to foreach loop
$product_id = $items->get_product_id();
$_product = wc_get_product( $product_id );
$sku = $_product->get_sku();
// add sku end<!– add sku to <tr> tag –>
<td style=”text-align:left; border: 1px solid #eee;”><?php echo wp_kses_post( $sku ); ?></td>
<!– add sku end –>Thanks,
Johnson- This reply was modified 5 years, 6 months ago by johnson0118.
- This reply was modified 5 years, 6 months ago by johnson0118.
- This reply was modified 5 years, 6 months ago by johnson0118.