我有两个关于Wordpress的Woocommerce的问题。
我正在一个向丹麦市场销售扬声器的网站上工作。
问题一:
我可以检测访问者的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/测试它时,我根本没有工作。
你能给我一些pintets或一些链接到你知道的一些插件吗?
更新
我成功地解决了问题1.我将访客国家/地区存储在一个带有IP location XML API的cookie中然后我可以创建一个if语句,说如果该国家不等于丹麦,那么添加到购物车,推车等应该被删除。
所以是的,如果有任何可以让我知道如何解决问题2,我会非常感激。
我能够检测到国家/地区,但无法为指定国家/地区指定每种产品的价格。
2&n;更新:
只是为了让任何感兴趣的读者知道,我最终购买了this plugin.,这是完美的工作!
答案 0 :(得分:6)
对于问题的第二部分:如果您只使用简单的产品类型(没有变化),那么您可以将自定义价格字段添加到产品数据页面并使用woocommerce_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中执行此操作,并将自定义值数组传递给自定义价格函数中的可选参数。这感觉非常错误&#39;就我们应该如何做事而言,它完成了工作。我非常愿意听到“正确的”#39;解决这部分问题。
在template-tags.php中:
<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>
答案 1 :(得分:1)
我看到您的更新,您确实设法获取访问者的国家/地区,并且您可以使用此更新创建if语句以删除购物车。 (顺便说一下,这很酷)
这不能回答你的问题2,关于改变每位访客的价格吗?您所要做的就是确保两个价格都存储在某个地方,然后让它回应丹麦或英国。
价格是特定的 - 自定义字段
您提到这不是货币转换 - 因此您需要存储这两个值。将自定义字段添加到您使用该新价格编辑的产品条目中,并将其命名为“denmarkprice”或其他
我对WooCommerce不够熟悉,可以说自定义字段插件可能有效,但如果您不想自己创建自定义字段并使用the_meta调用变量,则可以使用http://www.advancedcustomfields.com/ ()当你想在if else语句中显示它时。