Woocommerce-产品价格取决于国家



我有两个关于Wordpress Wooccommerce的问题。

我在一个向丹麦市场销售扬声器的网站上工作。

问题一:

我可以检测访客的IP并检测此人来自哪个国家吗?我想这可以通过一些ClientLocation api来完成。

如果一个人不是丹麦人,我可以禁用所有购物相关页面和按钮吗。Fx:隐藏添加到购物车,购物车和结账。我仍然希望人们能够看到价格,他们不应该有购买的选择。

问题2:

假设第一个问题是成功提出的。那么,我想展示除丹麦以外的其他国家的不同价格。因此,如果你是从一个国家访问网站,价格是XXX,而从另一个国家,价格是XXXX
比方说:

In USA the price is = $500 
And in UK the price = £400

(这与货币无关。不同国家的市场价格不同。(

我看过这个插件:http://wordpress.org/plugins/woocomerce-price-by-country/它允许我为每种产品写不同的价格,但当我用http://geopeeker.com/我根本没有工作。

你能给我一些你知道的插件的指针或链接吗?

更新

我设法解决了问题1。我用IP位置XML API将访问者国家存储在cookie中,然后我可以创建一个if语句,说如果该国家不等于丹麦,那么应该删除添加到购物车、购物车等。

所以,是的,如果任何人能给我一个如何解决问题2的想法,我将非常感激。

我可以检测国家,但不能指定每个产品在特定国家的价格。

2'nd更新:

只是为了让任何感兴趣的读者知道,我最终购买了这个插件。这是完美的工作!

对于问题的第二部分:如果您只使用简单的产品类型(没有变化(,那么您可以在产品数据页中添加自定义价格字段,并使用woococommerce_get_price_html过滤价格。

add_filter('woocommerce_get_price_html','so24863612_custom_price');
function so24863612_custom_price(){
   global $post;
   $_postID = $post->ID;
   $product = get_product( $_postID );
   $UK_price = get_post_meta($_postID, '_UK_price', true); //loads custom meta data 
   $return_price = $product->get_regular_price(); //default to regular price
   if (!empty($UK_price)) { 
      $return_price = $UK_price;
   }
   return $return_price;
}

您可以在产品页面上创建和保存自定义字段,如下所示:

//Display custom fields on product data page in admin
add_action( 'woocommerce_product_options_general_product_data', 'so24963039_display_custom_general_tab_fields' );
function so24963039_display_custom_general_tab_fields() {
    global $woocommerce, $post;
    $UK_price = get_post_meta( $post->ID, '_UK_price', true );
    woocommerce_wp_text_input(
        array(
        'id' => '_UK_price',
        'label' => __( 'UK Price (£)', 'woocommerce' ),
        'value' => $UK_price,
        'desc_tip' => 'false'
        )
    );
}
//Save custom fields to access via get_post_meta
add_action( 'woocommerce_process_product_meta', 'so24963039_save_custom_general_tab_fields' );
function so24963039_save_custom_general_tab_fields ($post_id) {
    $woocommerce_UK_price = $_POST['_UK_price'];
    if( !empty( $woocommerce_UK_price ) )
    update_post_meta( $post_id, '_UK_price', esc_attr( $woocommerce_UK_price ) );   
}

-----------------对于有变化的产品-------------------------

警告:可变产品要复杂得多,我对这个答案没有上面简单产品部分那么有信心,但这是我目前的理解。我在使用这种方法时遇到了一些迷你购物车显示问题(我将在最后解释(,但在迷你购物车和普通购物车中都能正确计算总数。

首先,我们想在现有产品的变体选项卡上为每个变体添加新的字段:

add_action( 'woocommerce_product_after_variable_attributes', 'so24963039_variable_fields', 10, 2 ); //Display Fields
function so24963039_variable_fields( $loop, $variation_data ) {
echo '<tr><td>';
woocommerce_wp_text_input(
    array(
        'id' => '_variant_UK_price['.$loop.']',
        'label' => __( 'UK Price (£)', 'woocommerce' ),
        'desc_tip' => 'false',
        'value' => $variation_data['_variant_UK_price'][0]
    )
);
echo '</td></tr>';
}

每当用户在编辑产品页面上添加新变体时,我们还需要动态添加它们:

add_action( 'woocommerce_product_after_variable_attributes_js', 'so24963039_variable_fields_js' ); //JS to add fields for dynamically added new variations
function so24963039_variable_fields_js(){ //add fields to new variations that get added 
echo '<tr><td>';
woocommerce_wp_text_input(
    array(
        'id' => '_variant_UK_price[ + loop + ]',
        'label' => __( 'UK Price (£)', 'woocommerce' ),
        'desc_tip' => 'false',
        'value' => $variation_data['_variant_UK_price'][0]
    )
);
echo '</td></tr>';
}

然后,我们将更改保存到变体元数据中的自定义字段:

add_action( 'woocommerce_process_product_meta_variable', 'so24963039_save_variable_fields', 10, 1 ); //Save variation fields
function so24963039_save_variable_fields( $post_id ) {
if (isset( $_POST['variable_sku'] ) ) {
    $variable_sku = $_POST['variable_sku'];
    $variable_post_id = $_POST['variable_post_id'];
    // Variant Tier 1 Price
    $_variant_UK_price = $_POST['_variant_UK_price'];
    for ( $i = 0; $i < sizeof( $variable_sku ); $i++) {
        $variation_id = (int) $variable_post_id[$i];
        if ( isset( $_variant_UK_price[$i] ) ) {
        update_post_meta( $variation_id, '_variant_UK_price', stripslashes($_variant_UK_price[$i] ) );
        }
    }
}
}

现在我们有了自定义的变体元数据,我们可以在自定义价格模块中访问它,如下所示:

add_filter('woocommerce_get_price_html','so24863612_custom_price');
function so24863612_custom_price(){
   global $post;
   $_postID = $post->ID;
   $product = get_product( $_postID );
   $product_type = $product->product_type;
   $UK_price = get_post_meta($_postID, '_UK_price', true); //covers simple products 
   if($product_type == 'variation'){ //override with variant prices
            $UK_price = get_post_meta($_postID, '_variant_$UK_price', true);
    }
   $return_price = $product->get_regular_price(); //default to regular price
   if (!empty($UK_price)) { 
      $return_price = $UK_price;
   }
   return $return_price;
}

现在,我相信除了迷你推车显示之外,这个部分应该所有的东西都能工作。出于某种原因,我似乎不知道如何访问变体元数据,以迫使其在迷你购物车中正确显示——就像我找到了迷你购物车显示的生成位置,但我很难找到访问自定义变量的正确上下文路径,所以我不得不在template-tags.php中这样做,并将一组自定义值传递给自定义价格函数中的可选参数。就我们应该如何做事而言,这感觉非常"错误",但它完成了任务。我很乐意听到这部分问题的"正确"解决方案。

在template-tags.hp:中

<div class="small-7 large-7 columns"><?php 
                                            $product_title = $_product->get_title();
                                            echo '<a class="cart_list_product_title" href="'.get_permalink($cart_item['product_id']).'">' . apply_filters('woocommerce_cart_widget_product_title', $product_title, $_product) . '</a>';
                                            echo '<div class="cart_list_product_price">';
                                            //original line: echo woocommerce_price($_product->get_price());
                                            /*Custom Price Override Block*/
                                            $_productID = $_product->id;
                                            $product_type = $_product->product_type;
                                            if($product_type == 'variation') {
                                                $custom_field_data = $_product->product_custom_fields;
                                                $regular_price = $custom_field_data['_regular_price'];
                                                $custom_UK_price = $custom_field_data['_variant_UK_price'];
                                                $custom_variant_prices = [$regular_price[0], $custom_UK_price[0]];
                                                echo so24863612_get_custom_price($_productID,  $custom_variant_prices ); 
                                            } else {
                                                echo so24863612_get_custom_price($_productID );
                                            }
                                            /*End Custom Price Override Block*/
                                            echo ' /</div>';
                                            echo '<div class="cart_list_product_quantity">'.__('Quantity', 'woocommerce').': '.$cart_item['quantity'].'</div>';
                                        ?></div>

我看到你的更新,你确实设法获得了访问者的国家/地区,你可以使用它来创建if语句来删除购物车。(顺便说一句,这太酷了(

这难道不能回答你的问题2,关于改变每位游客的价格吗?你所要做的就是确保这两个价格都存储在某个地方,然后让它与丹麦或英国的价格相呼应。

价格是特定的-自定义字段

你提到这不是货币转换,所以你需要存储这两个值。在用新价格编辑的产品条目中添加一个自定义字段,并将其命名为"denmarkprice"或

我对WooCommerce还不是100%熟悉,无法说明什么自定义字段插件可以工作,但您可以使用http://www.advancedcustomfields.com/如果您不想自己创建自定义字段,并在if-else语句中显示变量时用meta((调用该变量。

http://codex.wordpress.org/Custom_Fields

最新更新