jamlaw
Forum Replies Created
-
Forum: Plugins
In reply to: [Recipe Card] Inaccurate Nutrition InformationHi
How do I get the nutritional information please?
Forum: Plugins
In reply to: [Recipe Card] Error 404 recipe not showingHi
I have worked out its to do with the permalinks.
Just ignore me me I’m an idiot!!!
Thanks
Hi
Thanks for the reply. What information do you require?
Forum: Plugins
In reply to: [WooCommerce] Add product category to order email?Hi taongsagin
I wonder if you could help me. I need to get the category into the email-order-items.php, I have tried adding the code above, but I can’t find the second lot of code (<td style=”text-align:left; vertical-align:middle; border: 1px solid #eee; word-wrap:break-word;”>)
in mine to replace. I have copied my code below.Thanks in advance for your help, really appreciate it.
<?php
/**
* Email Order Items (plain)
*
* @author WooThemes
* @package WooCommerce/Templates/Emails/Plain
* @version 2.0.0
*/if ( ! defined( ‘ABSPATH’ ) ) exit; // Exit if accessed directly
global $woocommerce;
foreach ( $items as $item ) :
// Get/prep product data
$_product = $order->get_product_from_item( $item );
$item_meta = new WC_Order_Item_Meta( $item[‘item_meta’] );// Title, sku, qty, price
echo apply_filters( ‘woocommerce_order_product_title’, $item[‘name’], $_product );
echo $show_sku && $_product->get_sku() ? ‘ (#’ . $_product->get_sku() . ‘)’ : ”;// Variation
echo $item_meta->meta ? “\n” . nl2br( $item_meta->display( true, true ) ) : ”;// Quantity
echo “\n” . sprintf( __( ‘Quantity: %s’, ‘woocommerce’ ), $item[‘qty’] );// Cost
echo “\n” . sprintf( __( ‘Cost: %s’, ‘woocommerce’ ), $order->get_formatted_line_subtotal( $item ) );// Download URLs
if ( $show_download_links && $_product->exists() && $_product->is_downloadable() )
echo “\n” . implode( “\n”, $order->get_downloadable_file_urls( $item[‘product_id’], $item[‘variation_id’], $item ) );// Note
if ( $show_purchase_note && $purchase_note = get_post_meta( $_product->id, ‘_purchase_note’, true ) )
echo “\n” . nl2br( $purchase_note );echo “\n\n”;
endforeach;