11

我正在为 WordPress 使用 WooCommerce,并且我列出了不含税的项目。

我需要在产品页面(如结帐页面)上分别显示价格(不含税)、税金和价格+税金。

我一直无法找到执行此操作的插件。

我怎样才能做到这一点?

4

4 回答 4

21

WooCommerce v3.0.0 及更高
版本从 WooCommerce 3.0 版开始,不推荐使用函数woocommerce_price() ,方法get_price_includes_tax()也是如此。相反,您应该使用wc_get_price_including_tax

<?php echo wc_price( wc_get_price_including_tax( $product ) ); ?>

在 WooCommerce v3.0.0 之前,
您需要修改模板。 不要修改核心 WooCommerce 模板,而是使用 WooCommerce 模板覆盖系统将其复制到您的主题中。如需帮助,请参阅有关使用模板覆盖系统的 WooCommerce 文档。

price.php模板中,您将在需要价格的地方添加这段代码,包括税 (VAT):

<?php echo woocommerce_price( $product->get_price_including_tax() ); ?>

注意:price.php您修改的模板应位于此处wp-content/themes/[your theme folder]/woocommerce/single-product/price.php

于 2016-05-14T16:01:56.710 回答
15

2018/2019 年更新 (适用于 Woocommerce 3+)

显示不含税价格+税额+含税价格(在单独的行上)

首先阅读“如何通过您的主题覆盖 Woocommerce 模板”

1) 在single-product/price.php模板文件 (单个产品页面)上。

将代码替换为:

if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly
}

global $product;

// Get the prices
$price_excl_tax = wc_get_price_excluding_tax( $product ); // price without VAT
$price_incl_tax = wc_get_price_including_tax( $product );  // price with VAT
$tax_amount     = $price_incl_tax - $price_excl_tax; // VAT amount

// Display the prices
?>
<p class="price-excl"><?php echo wc_price( $price_excl_tax ); ?></p>
<p class="tax-price"><?php  echo wc_price( $tax_amount ); ?></p>
<p class="price-incl"><?php echo wc_price( $price_incl_tax ); ?></p>

2) 在loop/price.php模板文件 (商店和存档页面)上。

将代码替换为:

if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly
}

global $product;

if ( $product->get_price_html() ) :
    // Get the prices
    $price_excl_tax = wc_get_price_excluding_tax( $product ); // price without VAT
    $price_incl_tax = wc_get_price_including_tax( $product );  // price with VAT
    $tax_amount     = $price_incl_tax - $price_excl_tax; // VAT amount

    // Display the prices
    ?>
    <span class="price price-excl"><?php echo wc_price( $price_excl_tax ); ?></span><br>
    <span class="price tax-price"><?php  echo wc_price( $tax_amount ); ?></span><br>
    <span class="price price-incl"><?php echo wc_price( $price_incl_tax ); ?></span>
<?php endif ?>

文档:
模板结构以及如何通过您的主题覆盖 Woocommerce 模板
wc_get_price_including_tax()产品价格功能
wc_get_price_excluding_tax()产品价格功能
wc_price()格式化价格功能
wc_get_price_to_display()产品价格功能


原始答案(在 woocommerce 3 之前)

在检查您的 WooCommerce税务常规设置是否符合您的需求之前。

正如cal_b建议的那样,您需要从 woocommerce 复制templates活动子主题或主题内的文件夹。然后重命名它woocommerce。在此woocommerce模板文件夹中,您将在single-product子文件夹中找到price.php模板以编辑与单个产品页面中的定价显示相关的内容。

single-product/price.php之后的模板文件中global $product;,将代码替换为:

?>
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<?php
    $price_excl = $product->get_price_excluding_tax(); // price without VAT
    $price_incl = $product->get_price_including_tax();  // price included VAT
    $tax_amount = $price_incl - $price_excl; // VAT price amount
?>
    <p class="price"><?php echo woocommerce_price( $price_excl ); /* without VAT */ ?></p> (formatted)
    <p class="price-vat"><?php echo woocommerce_price( $tax_amount); /* VAT */ ?></p>
    <p class="price-and-vat"><?php echo woocommerce_price( $price_incl); /* With VAT  */ ?></p> 

    <meta itemprop="price" content="<?php echo esc_attr( $product->get_price() ); ?>" />
    <meta itemprop="priceCurrency" content="<?php echo esc_attr( get_woocommerce_currency() ); ?>" />
    <link itemprop="availability" href="http://schema.org/<?php echo $product->is_in_stock() ? 'InStock' : 'OutOfStock'; ?>" />
</div>

由于附加价格未格式化,您可能需要使用一些 woocommerce php 函数将其他一些元素与此附加价格混合:

get_price_suffix( ) // Get the suffix to display after prices > 0.
$currency = esc_attr( get_woocommerce_currency( ) ) // Get the currency code.
get_woocommerce_currency_symbol( $currency ) // Get the currency symbol.
get_tax_class( ) // Returns the tax class.
get_tax_status( ) // Returns the tax status.

参考:WooCommerce WC_Product 类

于 2016-05-14T19:35:46.137 回答
7

目前,您无需再更改模板。您可以在 Woocommerce 设置中进行设置:

  • Woocommerce:税收选项卡:在商店中显示价格/在购物车和结帐期间显示价格
于 2017-01-18T09:04:27.153 回答
3

是的,您无需编辑模板即可显示增值税。转到 Woocommerce 设置 > 增值税 > 价格显示后缀。您可以添加:{price_ exclude_tax} 以显示不含增值税。

于 2019-12-14T04:25:36.993 回答