本文整理汇总了PHP中wpsc_uses_coupons函数的典型用法代码示例。如果您正苦于以下问题:PHP wpsc_uses_coupons函数的具体用法?PHP wpsc_uses_coupons怎么用?PHP wpsc_uses_coupons使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了wpsc_uses_coupons函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: wpsc_display_tax_label
endif;
?>
</table>
<?php endif; ?>
<table class="productcart">
<tr class="total_price total_tax">
<td colspan="3">
<?php echo wpsc_display_tax_label(true); ?>
</td>
<td colspan="2">
<span id="checkout_tax" class="pricedisplay checkout-tax"><?php echo wpsc_cart_tax(); ?></span>
</td>
</tr>
<?php if(wpsc_uses_coupons() && (wpsc_coupon_amount(false) > 0)): ?>
<tr class="total_price">
<td colspan="3">
<?php echo __('Discount', 'wpsc'); ?>
</td>
<td colspan="2">
<span id="coupons_amount" class="pricedisplay"><?php echo wpsc_coupon_amount(); ?></span>
</td>
</tr>
<?php endif ?>
<tr class='total_price'>
<td colspan='3'>
<?php echo __('Total Price', 'wpsc'); ?>
示例2: wpsc_cart_tax
<table class="productcart">
<tr class="total_price total_tax">
<td colspan="3">
<?php
echo TXT_WPSC_TAX;
?>
</td>
<td colspan="2">
<span id="checkout_tax" class="pricedisplay checkout-tax"><?php
echo wpsc_cart_tax();
?>
</span>
</td>
</tr>
<?php
if (wpsc_uses_coupons() && wpsc_coupon_amount(false) > 0) {
?>
<tr class="total_price">
<td colspan="3">
<?php
echo TXT_WPSC_COUPONS;
?>
</td>
<td colspan="2">
<span id="coupons_amount" class="pricedisplay"><?php
echo wpsc_coupon_amount();
?>
</span>
</td>
</tr>
<?php
示例3: _x
<span class="wpsc-tax-included"><?php
echo _x('(included)', 'tax is included in product prices', 'wpsc');
?>
</span>
<?php
} else {
echo esc_html(wpsc_format_currency($this->get_tax()));
}
?>
</td>
</tr>
<?php
}
?>
<?php
if (wpsc_uses_coupons() && $this->get_total_discount() > 0) {
?>
<tr class="wpsc-cart-aggregate wpsc-cart-discount-row">
<th scope="row" colspan="<?php
echo count($this->columns) - 1;
?>
">
<?php
esc_html_e('Discount:', 'wpsc');
?>
<br />
</th>
<td>
<?php
echo wpsc_format_currency($this->get_total_discount());
?>