WooCommerce获得不同的产品价格

4dc9hkyq  于 2022-10-24  发布在  WordPress
关注(0)|答案(7)|浏览(301)

我正在尝试在变体下拉菜单中显示产品变体价格。我正在尝试更改默认行为,即当您在下拉列表中选择变体时,价格显示在div中。
问题是我找不到那个div是从哪里得到变化价格的。我搜索了所有的脚本,但没有找到
如果我使用:

add_filter('woocommerce_variation_option_name' ,'add_price_to_dropdown');

function add_price_to_dropdown($name){

    global $product;
    return $name.' '.$product->get_price_html();
}

我只是得到了所有选项的最小变动价格。我想知道每一种变化的价格。有什么线索吗?

olhwl3o2

olhwl3o21#

以下是您要查找的代码

add_filter( 'woocommerce_variation_option_name', 'display_price_in_variation_option_name' );

function display_price_in_variation_option_name( $term ) {
    global $wpdb, $product;

    if ( empty( $term ) ) return $term;
    if ( empty( $product->id ) ) return $term;

    $id = $product->get_id();

    $result = $wpdb->get_col( "SELECT slug FROM {$wpdb->prefix}terms WHERE name = '$term'" );

    $term_slug = ( !empty( $result ) ) ? $result[0] : $term;

    $query = "SELECT postmeta.post_id AS product_id
                FROM {$wpdb->prefix}postmeta AS postmeta
                    LEFT JOIN {$wpdb->prefix}posts AS products ON ( products.ID = postmeta.post_id )
                WHERE postmeta.meta_key LIKE 'attribute_%'
                    AND postmeta.meta_value = '$term_slug'
                    AND products.post_parent = $id";

    $variation_id = $wpdb->get_col( $query );

    $parent = wp_get_post_parent_id( $variation_id[0] );

    if ( $parent > 0 ) {
         $_product = new WC_Product_Variation( $variation_id[0] );
         return $term . ' (' . wp_kses( woocommerce_price( $_product->get_price() ), array() ) . ')';
    }
    return $term;

}

希望这将是有用的。

agxfikkp

agxfikkp2#

这可能会对你们有所帮助;在搜索如何在新版本的WC上做同样的事情时:

global $woocommerce;
$product_variation = new WC_Product_Variation($_POST['variation_id']);
$regular_price = $product_variation->regular_price;

我正在使用AJAX并通过POST方法传递变量的ID。

mzaanser

mzaanser3#

我的问题和特工组的完全一样,但我的情况有点不同。这是我的解决方案,可能会帮助其他也登陆这个页面的人。

function get_product_variation_price($variation_id) {
    $product = new WC_Product_Variation($variation_id);
    return $product->product_custom_fields['_price'][0];
}

**WooCommerce 2.2.10更新:**上述代码不能在当前版本的WooCommerce上运行。下面的代码工作正常,值得考虑,因为它使用了WooCommerce API,它避免了手动SQL查询,并且非常简单……

/*
 * You can find the $variation_id in the Product page (go to Product Data > Variations, and it is shown with a preceeding "#" character)
 */
function get_product_variation_price($variation_id) {

    global $woocommerce; // Don't forget this!
    $product = new WC_Product_Variation($variation_id);
    //return $product->product_custom_fields['_price'][0]; // No longer works in new version of WooCommerce
    //return $product->get_price_html(); // Works. Use this if you want the formatted price
    return $product->get_price(); // Works. Use this if you want unformatted price

}
q8l4jmvw

q8l4jmvw4#

我一直在WooCommerce上使用这个代码来显示我的变体价格,当我更新到WooCommerce 2.0时,我注意到每当我编辑产品时,wp-admin/error-log中都会出现数据库错误。我不确定在更新到2.0之前这些错误是否也发生了,因为我在更新之前使用WooCommerce的时间并不长,而且直到今天我才检查了错误日志。
变体价格如预期显示,但每次我打开产品进行编辑时,错误日志都会填满以下错误。与我正在编辑的产品相关的每一种变体都有错误。

WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 8 for query SELECT postmeta.post_id AS product_id
            FROM wp_postmeta AS postmeta
                LEFT JOIN wp_posts AS products ON ( 

products.ID = postmeta.post_id )
            WHERE postmeta.meta_key LIKE 'attribute_%'
                AND postmeta.meta_value = '12'
                AND products.post_parent =  made by 

include('wp-admin/edit-form-advanced.php'), do_meta_boxes, call_user_func, woocommerce_product_data_box, do_action('woocommerce_product_write_panels'), call_user_func_array, variable_product_type_options, include('/plugins/woocommerce/admin/post-types/writepanels/variation-admin-html.php'), apply_filters('woocommerce_variation_option_name'), call_user_func_array, display_price_in_variation_option_name

我在代码中更改了以下行:and ducts.post_parent=$product->id“;更改为this and ducts.post_parent=‘$product->id’”;
现在,不再有错误了。错误日志保持完好且为空。
只是想分享一下,以防其他人遇到麻烦。

b0zn9rqh

b0zn9rqh5#

我对这个问题的看法,在最新的WooCommerce:3.2.1(2017年10月)价格将显示在下拉列表中的变化旁边。

add_filter( 'woocommerce_variation_option_name', 'display_price_in_variation_option_name' );

function display_price_in_variation_option_name( $term ) {
    global $wpdb, $product;

    $result = $wpdb->get_col( "SELECT slug FROM {$wpdb->prefix}terms WHERE name = '$term'" );

    $term_slug = ( !empty( $result ) ) ? $result[0] : $term;

    $query = "SELECT postmeta.post_id AS product_id
                FROM {$wpdb->prefix}postmeta AS postmeta
                    LEFT JOIN {$wpdb->prefix}posts AS products ON ( products.ID = postmeta.post_id )
                WHERE postmeta.meta_key LIKE 'attribute_%'
                    AND postmeta.meta_value = '$term_slug'
                    AND products.post_parent = $product->id";

    $variation_id = $wpdb->get_col( $query );

    $parent = wp_get_post_parent_id( $variation_id[0] );

    if ( $parent > 0 ) {
        $_product = new WC_Product_Variation( $variation_id[0] );
        $_currency = get_woocommerce_currency_symbol();
        return $term . ' ('.$_currency.' '. $_product->get_price()  . ')';
    }
    return $term;

}

希望这对某人有帮助。将此添加到您的子主题函数中。php

yxyvkwin

yxyvkwin6#

要跳过创建新产品对象的需要,我们还可以使用wc_get_product()函数。
以下是几个例子:

$price = wc_get_product($product_or_variation_id)->get_price();
function get_cart_item_prices() {
  $user_cart = WC()->cart->get_cart();
  foreach ($user_cart as $cart_item) {
    $price = wc_get_product($cart_item['variation_id'])->get_price();
    echo $price;
    echo "<br/>";
  }
}
kx5bkwkv

kx5bkwkv7#

  • 2022*

我正在使用$product->get_variation_prices(),它返回变体价格和变体ID

相关问题