3

一直在使用此代码隐藏价格..

add_filter('woocommerce_get_price_html','members_only_price');
function members_only_price($price){
if(is_user_logged_in() ){
    return $price;
}
else return '<a href="' .get_permalink(woocommerce_get_page_id('myaccount')). '">Login</a> or <a href="'.site_url('/wp-login.php?action=register&redirect_to=' . get_permalink()).'">Register</a> to see price!';
}

尝试修改它以用于隐藏添加到购物车..但无济于事..有人吗?

4

4 回答 4

5

扩展上面的代码(感谢 Ewout),下面的代码将去掉所有 woocommerce 产品上的所有价格和“添加到购物车”按钮,并解释原因。我需要一个提供直销产品的网站的代码,为了遵守他们的规则,我不能向公众展示价格。

将过滤器添加到主题的 functions.php 文件中。

add_filter('woocommerce_get_price_html','members_only_price');

function members_only_price($price){

if(is_user_logged_in() ){
return $price;
}

else {
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' );
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
return 'Only <a href="' .get_permalink(woocommerce_get_page_id('myaccount')). '">Registered Users</a> are able to view pricing.';
  }

}
于 2013-12-15T11:07:46.453 回答
1

你有没有尝试过这样的事情?您可以将 woocommerce 设置为仅在用户登录时显示价格。

add_filter('catalog_visibility_alternate_price_html', 'my_alternate_price_text', 10, 1);
function my_alternate_price_text($content) {
    return '<a href="' .get_permalink(woocommerce_get_page_id('myaccount')). '">Login</a> or <a href="'.site_url('/wp-login.php?action=register&redirect_to=' . get_permalink()).'">Register</a> to see price!';
}

参考:http ://docs.woothemes.com/document/catalog-visibility-options/

编辑:

参考资料有购物车可见性参考

add_filter('catalog_visibility_alternate_add_to_cart_button', 'my_alternate_button', 10, 1);

function my_alternate_button($content) {

    return '<a href="' .get_permalink(woocommerce_get_page_id('myaccount')). '">Login</a> or <a href="'.site_url('/wp-login.php?action=register&redirect_to=' . get_permalink()).'">Register</a> to see cart!';

}
于 2013-05-13T00:55:59.640 回答
0

CSS呢?

button.add-to-cart {
    display: none;
}

body.logged-in button.add-to-cart {
    display: block;
}
于 2015-01-14T08:34:59.577 回答
0

我们可以通过woocommerce_is_purchasableandwoocommerce_get_price_html钩子轻松做到这一点。

代码:

// Disable purchase for non-logged-in users. (Remove add-to-cart button).
function m3wc_woocommerce_is_purchasable( $is_purchasable, $product ) {
    if ( ! is_user_logged_in() ) {
        return false;
    }

    return $is_purchasable;
}
add_filter( 'woocommerce_is_purchasable', 'm3wc_woocommerce_is_purchasable', 10, 2 );

// Show "Login to see prices" instead of price for non-logged in users.
function m3wc_woocommerce_get_price_html( $price ) {
    if ( ! is_user_logged_in() ) {
        return '<a href="' . get_permalink( wc_get_page_id( 'myaccount' ) ) . '">Login</a> to see prices';
    }

    return $price;
}
add_filter( 'woocommerce_get_price_html', 'm3wc_woocommerce_get_price_html', 10, 2 );

结果:

未登录用户

资料来源:WooCommerce - 禁用未登录用户的购买。(删除添加到购物车按钮)。

于 2019-11-30T16:25:19.163 回答