Woocommerce得到变化的产品价格(Woocommerce get variation pro

2019-06-27 20:09发布

我试着去显示变化下拉内的产品变化的价格。 我试着去改变,当你选择的下拉的变化,其中显示一个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();
}

我只是得到分钟变动价格的所有选项。 我想每个版本的价格。 任何线索?

Answer 1:

这里是你正在寻找的代码

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;

}

希望这将是有益的。



Answer 2:

这可能会帮助你们; 而搜索如何做同样的WC的新版本:

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

我使用Ajax和通过与POST方法变化的ID。



Answer 3:

我一直在使用上Woocommerce此代码,以显示我的价格变化,当我更新到Woocommerce 2.0我注意到没有显示在可湿性粉剂管理员/错误日志,每当我编辑的产品数据库的错误。 我不知道,如果错误是之前还因为我没有使用Woocommerce长期更新之前不要以为我检查错误日志直到今天更新到2.0发生。

变化的价格出现了预期,但在错误日志将每次我开了一个产品进行编辑时填写了下面的错误。 有与我编辑的产品相关的每变化一个错误。

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 = $产品 - > ID “;到这一点,并products.post_parent = '$产品 - > ID'”;

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

只是想在任何情况下,分享别人跑进问题。



Answer 4:

我有完全相同的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

}


Answer 5:

我在这个问题上,在最新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添加此



文章来源: Woocommerce get variation product price