• Woocommerce

    Hi there,

    I’m trying to change or add rows in the ‘view order list’ under ‘my-account’

    How can I do this? I found this piece of code, but I’m unable to edit as a ‘per row editing’. By saying that I mean I can’t edit a individual row.

    Thank you!

    <tfoot>
    			<?php
    				foreach ( $order->get_order_item_totals() as $key => $total ) {
    					?>
    					<tr>
    						<th scope="row"><?php echo $total['label']; ?></th>
    						<td><?php echo $total['value']; ?></td>
    					</tr>
    					<?php
    				}
    			?>
    		</tfoot>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Woocommerce – change or add rows in view order list’ is closed to new replies.