Wordpress版本:4.6.1
Woocommerce版本:2.6.4
使用标准的woocommerce并添加具有不同价格值的可变产品时。 Woocommerce显示该产品低于产品标题的最低和最高价格。像这样:€50 - €100
我将以下代码添加到我的functions.php文件中以禁用变量产品的此行为:
/** Hide Variable prices */
add_filter( 'woocommerce_variable_sale_price_html', 'bbloomer_variation_price_format', 10, 2 );
add_filter( 'woocommerce_variable_price_html', 'bbloomer_variation_price_format', 10, 2 );
function bbloomer_variation_price_format( $price, $product ) {
if (is_product()) {
return $product->get_price();
} else {
// Main Price
$prices = array( $product->get_variation_price( 'min', true ), $product->get_variation_price( 'max', true ) );
$price = $prices[0] !== $prices[1] ? sprintf( __( '%1$s', 'woocommerce' ), wc_price( $prices[0] ) ) : wc_price( $prices[0] );
// Sale Price
$prices = array( $product->get_variation_regular_price( 'min', true ), $product->get_variation_regular_price( 'max', true ) );
sort( $prices );
$saleprice = $prices[0] !== $prices[1] ? sprintf( __( '%1$s', 'woocommerce' ), wc_price( $prices[0] ) ) : wc_price( $prices[0] );
if ( $price !== $saleprice ) {
$price = '<del>' . $saleprice . '</del> <ins>' . $price . '</ins>';
}
return $price;
}
}
// show variation price
add_filter('woocommerce_show_variation_price', function() {return true;});
//override woocommerce function
function woocommerce_template_single_price() {
global $product;
if ( ! $product->is_type('variable') ) {
woocommerce_get_template( 'single-product/price.php' );
}
}
这一切都运作良好。但现在可变价格显示在产品选项下方,如下图所示。 我想在标题下方显示可变价格。
现在变量产品: 150欧元是选择颜色和尺寸的结果。选择这些值后,价格会显示在变化之下。我希望这个变化价格显示在标题下方,就像一个简单的产品。
我花了好几个小时找到了怎么做,但我发现的唯一一件事就是改变了woocommerce-core文件。这不是一个选择,因为需要更新woocommerce。
更新
解决 @Amy Ling 的困惑。我不希望显示最低或最高价格。我需要标题下方显示的当前变化的价格。例如:鞋子是红色的,尺寸30 => 150欧元,鞋子是红色的,尺寸40 => 170欧元等额外图片:
答案 0 :(得分:5)
除了您拥有的代码,请将以下内容添加到主题functions.php
文件中:
function shuffle_variable_product_elements(){
if ( is_product() ) {
global $post;
$product = wc_get_product( $post->ID );
if ( $product->is_type( 'variable' ) ) {
remove_action( 'woocommerce_single_variation', 'woocommerce_single_variation', 10 );
add_action( 'woocommerce_before_variations_form', 'woocommerce_single_variation', 20 );
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );
add_action( 'woocommerce_before_variations_form', 'woocommerce_template_single_title', 10 );
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
add_action( 'woocommerce_before_variations_form', 'woocommerce_template_single_excerpt', 30 );
}
}
}
add_action( 'woocommerce_before_single_product', 'shuffle_variable_product_elements' );
<强>解释强>
使这些元素移动稍微复杂的问题是变量产品是动态的,价格元素是用\woocommerce\assets\js\frontend\add-to-cart-variation.js
中的JavaScript操纵的。此price元素会动态放置在<div class="woocommerce-variation single_variation">
中,该<form>
必须保留在类&变体的woocommerce_single_product_summary
元素中。[variation_form&#39;。
因此,我对这些操作所做的就是将价格移到表单的顶部,因为它必须保留在表单中。然后,我从表单上方删除了标题和摘录,并将其添加回表单内部。
这些操作也可能会出现在价格之上。
我上面改变的动作足以满足我解决这个问题的主题。但是,与woocommerce_template_single_rating
操作挂钩的其他一些功能包括:
woocommerce_template_single_meta
woocommerce_template_single_sharing
woocommerce_template_single_price
woocommerce_before_variations_form
(您已经使用自己的代码有效地处理了这个问题根据您的主题和您使用的WooCommerce设置,可能还需要删除这些设置并将其添加回var myvalue = 1;
var lists = document.getElementsByTagName('li');
for(var i = 0; i < lists.length; i++){
if(myvalue == lists[i].innerHTML){
//change your text here
}
}
操作。
答案 1 :(得分:1)
您可以通过主题文件夹覆盖WooCommerce模板文件。当您对插件进行更新时,这不会影响任何内容。
以下是一个包含详细文档的链接:https://docs.woocommerce.com/document/template-structure/
很多文件都有do_action('woocommerce_add_this_info_piece');
。您可以在位于/woocommerce/includes/wc-template-hooks.php
<强>更新强>
下载WooCommerce并创建变量和简单产品后。简单和可变定价都已经显示在标题之后。下面的代码删除了最高价格,只留下最低价格。
要仅显示最高价格,请更改
wc_price( $prices[0] ) ) : wc_price( $prices[0] );
到
wc_price( $prices[1] ) ) : wc_price( $prices[1] );
/*
Disable Variable Product Price Range:
*/
add_filter( 'woocommerce_variable_sale_price_html', 'my_variation_price_format', 10, 2 );
add_filter( 'woocommerce_variable_price_html', 'my_variation_price_format', 10, 2 );
function my_variation_price_format( $price, $product ) {
// Main Price
$prices = array( $product->get_variation_price( 'min', true ),
$product->get_variation_price( 'max', true ) );
$price = $prices[0] !== $prices[1] ? sprintf( __( '%1$s', 'woocommerce' ), wc_price( $prices[0] ) ) : wc_price( $prices[0] );
// Sale Price
$prices = array( $product->get_variation_regular_price( 'min', true ),
$product->get_variation_regular_price( 'max', true ) );
sort( $prices );
$saleprice = $prices[0] !== $prices[1] ? sprintf( __( '%1$s', 'woocommerce' ), wc_price( $prices[0] ) ) : wc_price( $prices[0] );
if ( $price !== $saleprice ) {
$price = '<del>' . $saleprice . '</del> <ins>' . $price . '</ins>';
}
return $price;
}
答案 2 :(得分:0)
我也遇到了类似的问题(即使我使用了不同的方法),现在由于有了James Jones代码,我可以完成它!
我的解决方法如下:
我有多个产品页面,我想隐藏价格范围,但保持单个产品的价格。
我使用以下两个CSS片段来做到这一点:
/*Hide Price Range on Variation Product Page*/
.single-product .entry-summary .price {
display: none;
}
/*Show and Modify Single Product Price on Variation Product Page*/
.single-product .entry-summary .woocommerce-variation-price .price {
display: block;
color: green !important;
font-weight: 500 !important;
margin-top: 12px !important;
margin-bottom: 16px !important;
}
执行完此操作后,我想将单个产品的价格移动到标题下的位置(价格变化范围之前的位置),将James代码添加到functions.php中可以帮助我实现这一目标。谢谢!