Added classes to the table cells for order review

This commit is contained in:
Geert De Deckere 2012-02-16 12:25:02 +01:00
parent b7b53dbe1a
commit 8bd4947006
1 changed files with 2 additions and 2 deletions

View File

@ -180,8 +180,8 @@ $available_methods = $woocommerce->shipping->get_available_shipping_methods();
echo '
<tr>
<td class="product-name">'.$_product->get_title().$woocommerce->cart->get_item_data( $values ).'</td>
<td>'.$values['quantity'].'</td>
<td>' . $woocommerce->cart->get_product_subtotal( $_product, $values['quantity'] ) . '</td>
<td class="product-quantity">'.$values['quantity'].'</td>
<td class="product-subtotal">' . $woocommerce->cart->get_product_subtotal( $_product, $values['quantity'] ) . '</td>
</tr>';
endif;
endforeach;