⬇️下载本文 🔗https://wmghz.com/101-posts/a110.html

wordpress - 如何设置woocommerce添加购物车后直接跳到付款页面。- a110

前提:

使用woocommerce插件;storefront主题。

在functions.php使用以下代码:

这里利用了WooCommerce 的一个 hook api "woocommerce_add_to_cart_redirect", 让加到购物车跳转到 checkout 的url页面。

在files manager后台,找到htdocs - wp-content - functions.php即可。


/**
 * @author        Donald 
 * @community     https://www.wmghz.com/about.html
 */
add_filter( 'woocommerce_add_to_cart_redirect', 'wmghz_redirect_checkout_add_cart' );
 
function wmghz_redirect_checkout_add_cart() {
   return wc_get_checkout_url();
}

    

另外,避免自动更新:

在functions.php使用以下代码:

files manager找到htdocs - wp-config.php即可。

编辑wp-config.php文件:你也可以通过编辑WordPress的配置文件wp-config.php来禁用自动更新。在wp-config.php文件中添加以下代码:


/**
 * @author        Donald 
 * @community     https://www.wmghz.com/about.html
 */
define( 'AUTOMATIC_THEME_UPDATES', false ); 
    

将此代码添加到wp-config.php文件中,保存并上传到你的WordPress站点。这将完全禁用主题的自动更新。

隐藏页面多余的元素

最后,在customized css设置以下代码,隐藏多余的元素。)


/**
 * @author        Donald 
 * @community     https://www.wmghz.com/about.html
 */

/* Hide Search Icon */
.site-header .site-search {
display: none;
}

/* Hide Cart Icon */
.site-header-cart {
    display: none !important;
}

/* Hide Breadcrumbs */
.woocommerce-breadcrumb {
    display: none;
}

/* Hide storefront handheld footer bar */
@media (max-width: 768px) {
    .storefront-handheld-footer-bar {
        display: none;
    }
}