Added classes to the table cells for order review
This commit is contained in:
parent
b7b53dbe1a
commit
8bd4947006
|
@ -180,8 +180,8 @@ $available_methods = $woocommerce->shipping->get_available_shipping_methods();
|
||||||
echo '
|
echo '
|
||||||
<tr>
|
<tr>
|
||||||
<td class="product-name">'.$_product->get_title().$woocommerce->cart->get_item_data( $values ).'</td>
|
<td class="product-name">'.$_product->get_title().$woocommerce->cart->get_item_data( $values ).'</td>
|
||||||
<td>'.$values['quantity'].'</td>
|
<td class="product-quantity">'.$values['quantity'].'</td>
|
||||||
<td>' . $woocommerce->cart->get_product_subtotal( $_product, $values['quantity'] ) . '</td>
|
<td class="product-subtotal">' . $woocommerce->cart->get_product_subtotal( $_product, $values['quantity'] ) . '</td>
|
||||||
</tr>';
|
</tr>';
|
||||||
endif;
|
endif;
|
||||||
endforeach;
|
endforeach;
|
||||||
|
|
Loading…
Reference in New Issue