在 WooCommerce 中,当购物车页面为空时,我想将购物车页面重定向到商店页面,否则显示购物车页面。谁能有解决办法吗
这是我尝试过的代码,但它不起作用:
function my_empty_cart() {
global $woocommerce;
if (isset( $_GET['empty-cart'] ) ) {
wp_safe_redirect( get_permalink( woocommerce_get_page_id( 'product' ) ) );
}
}
add_action( 'init', 'my_empty_cart' );
// old woocommerce : use sizeof( $woocommerce->cart->cart_contents) to check cart content count
// In new woocommerce 2.1+ : WC()->cart->cart_contents_count to check cart content count
add_action("template_redirect", 'redirection_function');
function redirection_function(){
global $woocommerce;
if( is_cart() && WC()->cart->cart_contents_count == 0){
wp_safe_redirect( get_permalink( woocommerce_get_page_id( 'shop' ) ) );
}
}
init
钩子每次都会运行。使用template_redirect
==============Updates=============
在新的 woocommerce 中,他们更新了功能,现在您可以使用以下函数直接获取购物车内容计数。
WC()->cart->cart_contents_count
由于 WooCommerce 版本 3 在尝试访问购物车页面且购物车已为空时使用以下内容重定向到商店页面:
add_action( 'template_redirect', 'empty_cart_redirect' );
function empty_cart_redirect(){
if( is_cart() && WC()->cart->is_empty() ) {
wp_safe_redirect( get_permalink( wc_get_page_id( 'shop' ) ) );
exit();
}
}
代码位于活动子主题(或活动主题)的functions.php 文件中。已测试并有效。
注释 - 已过时和已弃用的代码:
global $woocommerce;
与 $woocommerce->cart
一起使用可简单地替换为 WC()->cart
sizeof($woocommerce->cart->cart_contents) == 0
替换为简单的 WC()->cart->is_empty()
woocommerce_get_page_id()
替换为 wc_get_page_id()
删除购物车页面上的所有购物车商品时,要使重定向处于活动状态,需要一些额外的 jQuery 代码,请参阅:如果 WooCommerce 3+ 中的购物车页面上的购物车已清空,则重定向到商店
我自己测试了这个,因为我需要类似的东西。
function cart_empty_redirect_to_shop() {
global $woocommerce;
if ( is_page('cart') and !sizeof($woocommerce->cart->cart_contents) ) {
wp_redirect( get_permalink( wc_get_page_id( 'shop' ) ) ); exit;
}
}
add_action( 'wp_head', 'cart_empty_redirect_to_shop' );
我尝试了@Pushpak的解决方案,但它不再起作用了。要检查购物车内容,请使用此代码:
global $woocommerce;
if ( $woocommerce->cart->cart_contents_count != 0 ) {
// cart has content
} else {
// cart is empty
}
2018 年 - 25 日 - 9 月
今天为我工作::
function cart_empty_redirect_to_shop() {
global $woocommerce, $woocommerce_errors;
if ( is_cart() && sizeof($woocommerce->cart->cart_contents) == 0) {
wp_safe_redirect( get_permalink( wc_get_page_id( 'shop' ) ) );
exit;
}
}
add_action( 'template_redirect', 'cart_empty_redirect_to_shop' );
只需转到 woocommerce 文件夹并导航到 CART 文件夹..其中有一个 cart-empty.php
然后找到以下内容:
<p><a class="button1 btn btn-normal" href="<?php echo get_permalink.....
它会说 getpermalink(woocommerce_.....
只需将其更改为
<p><a class="button1 btn btn-normal" href="<?php echo get_permalink('THE PAGE ID YOU WANT TO REDIRECT TO');
还有鲍勃你的叔叔..它将重定向到你指定的 id 页面。
如果不明白请告诉我。
2024 年解决方案
add_action( 'woocommerce_cart_is_empty', 'empty_cart_redirect', 10 );
function empty_cart_redirect() {
wp_safe_redirect(get_permalink(wc_get_page_id('shop')));
}
就我而言,一些高票答案打破了我网站上的其他重定向。但上面的代码对我来说效果很好。