バリエーションのドロップダウン内に製品バリエーションの価格を表示しようとしています。ドロップダウンでバリエーションを選択すると、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();
}
すべてのオプションの最小変動価格を取得します。各バリエーションの価格を取得したい。どんな手掛かり?
あなたが探しているコードは次のとおりです
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;
}
これが役に立つことを願っています。
これは皆さんに役立つかもしれません。 WCの新しいバージョンで同じことを行う方法を検索中:
global $woocommerce;
$product_variation = new WC_Product_Variation($_POST['variation_id']);
$regular_price = $product_variation->regular_price;
私はajaxを使用し、postメソッドでバリエーションのIDを渡します。
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
}
Woocommerceでこのコードを使用して変動価格を表示しており、Woocommerce 2.0に更新すると、製品を編集するたびにwp-admin/error-logにデータベースエラーが表示されることに気付きました。更新前の長い間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 = $ product-> id ";これにAND products.post_parent = '$ product-> id'";
そして今、これ以上のエラーはありません。エラーログは空のままです。
他の誰かが問題に遭遇した場合に備えて共有したかっただけです。
最新の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に追加