예제 #1
0
									<th class="cart-row-tax-title"><?php 
                    echo fflcommerce_cart::get_tax_for_display($tax_class);
                    ?>
</th>
									<td class="cart-row-tax"><?php 
                    echo fflcommerce_cart::get_tax_amount($tax_class);
                    ?>
</td>
								</tr>
							<?php 
                }
            }
        }
        ?>
					<?php 
        if (!fflcommerce_cart::tax_after_coupon() && fflcommerce_cart::get_total_discount()) {
            ?>
						<tr class="discount">
							<th class="cart-row-discount-title"><?php 
            _e('Discount', 'fflcommerce');
            ?>
</th>
							<td class="cart-row-discount">-<?php 
            echo fflcommerce_cart::get_total_discount();
            ?>
</td>
						</tr>
					<?php 
        }
        ?>
					<tr>
 public static function show_retail_price()
 {
     if (self::get_options()->get('fflcommerce_calc_taxes') != 'yes') {
         return false;
     }
     return fflcommerce_cart::has_compound_tax() || fflcommerce_cart::tax_after_coupon();
 }