24

我试图在变体下拉列表中显示产品变体价格。当您在下拉列表中选择变体时,我试图更改价格显示在 div 内的默认行为。

问题是我找不到那个 div 在哪里得到变化的价格。我搜索了所有 javascript 但找不到它

如果我使用:

add_filter('woocommerce_variation_option_name' ,'add_price_to_dropdown');

function add_price_to_dropdown($name){

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

我只是得到所有选项的最小变化价格。我想得到每个变化的价格。有什么线索吗?

4

5 回答 5

46

这是您要查找的代码

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;

}

希望这会有用。

于 2012-09-05T21:26:27.747 回答
22

这可能对你们有帮助;在搜索如何对新版本的 WC 执行相同操作时:

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

我正在使用 ajax 并使用 post 方法传递变体的 ID。

于 2014-12-03T18:45:07.993 回答
7

我的问题与 OP 完全相同,但我的情况有点不同。这是我的解决方案,它可能会帮助其他也登陆此页面的人。

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

}
于 2014-03-29T12:48:41.140 回答
4

我一直在 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 products.post_parent = $product->id"; 到此 AND products.post_parent = '$product->id' ";

现在,没有更多的错误。错误日志保持良好和空。

只是想分享以防其他人遇到问题。

于 2013-03-17T05:41:51.277 回答
0

我对这个问题的看法,在最新的 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;

}

希望这个可以帮助某人。 将此添加到您的子主题functions.php中

于 2017-10-25T18:16:39.657 回答