1
我對woocommerce相當新,雖然有一天添加到購物車和購物車頁面顯示正常。我現在發現進入我的購物車頁面會產生一個空白頁面。Woocommerce,添加到購物車不工作,購物車頁面不顯示
有誰知道什麼會導致此類問題?
感謝,
我對woocommerce相當新,雖然有一天添加到購物車和購物車頁面顯示正常。我現在發現進入我的購物車頁面會產生一個空白頁面。Woocommerce,添加到購物車不工作,購物車頁面不顯示
有誰知道什麼會導致此類問題?
感謝,
如何在購物車頁面的網址? 你是否在wordpress中設置永久鏈接?
設置>永久設置>帖子名稱
它的自動顯示/%postname%/
這段代碼添加到您的function.php:
add_filter('auth_cookie_expiration', 'my_expiration_filter', 99, 3);
function my_expiration_filter($seconds, $user_id, $remember){
//if "remember me" is checked;
if ($remember) {
//WP defaults to 2 weeks;
$expiration = 14*24*60*60; //UPDATE HERE;
} else {
//WP defaults to 48 hrs/2 days;
$expiration = 2*24*60*60; //UPDATE HERE;
}
//http://en.wikipedia.org/wiki/Year_2038_problem
if (PHP_INT_MAX - time() < $expiration) {
//Fix to a little bit earlier!
$expiration = PHP_INT_MAX - time() - 5;
}
return $expiration;
}
添加此代碼到你的function.php –
請格式化你的代碼並添加評論回答 – user7294900
add_filter('auth_cookie_expiration','my_expiration_filter',99,3);如果($記住){ $ expiration = 14 * 24 * 60 * 60; //在這裏更新; } else { $ expiration = 2 * 24 * 60 * 60; //在這裏更新; (PHP_INT_MAX_time()<$ expiration){expiration = PHP_INT_MAX_time() - 5;}} } return $ expiration; } –