Woocommerce跳过结帐免费产品

时间:2016-10-10 14:43:42

标签: woocommerce

我在WP和Woocommerce上建立网页 - 我想跳过购物车和结帐页面免费产品(或我可以指定ID的产品)。这些产品是免费和虚拟的(无需付款,无需运送)。该网页仅供注册用户使用 - 因此所有客户信息都存在。

我希望得到的结果是,如果您按产品页面上的ORDER按钮 - 订单已完成,客户将被重定向到感谢页面。

BR, 卡斯帕

3 个答案:

答案 0 :(得分:2)

我采用了相同的概念,但是在结帐时处理订单时发现了一个主要问题;仍然是必填字段。

主要问题是通过AJAX处理订单(正在使用is_ajax()),即使它在结帐页面上,也没有返回真实值。可能是最近发生了更改,或者可能是网站的环境(主题)。

以下是一些条件标签:https://docs.woocommerce.com/document/conditional-tags/

了解情况如何变化,可以在此处编辑答案,但原始概念位于:https://www.skyverge.com/blog/how-to-simplify-free-woocommerce-checkout/

function wc_free_checkout_fields() {
    // Bail we're not at checkout, or if we're at checkout OR AJAX (payment process) but payment is needed.
    if ( function_exists( 'is_checkout' ) && ( ! ( is_checkout() || is_ajax() ) || ( ( is_checkout() || is_ajax() ) && WC()->cart->needs_payment() ) ) ) {
        return;
    }

    // Remove coupon forms since it's irrelevant with a free cart?
    remove_action( 'woocommerce_before_checkout_form', 'woocommerce_checkout_coupon_form', 10 );

    // Remove the "Additional Info" order notes.
    add_filter( 'woocommerce_enable_order_notes_field', '__return_false' );

    // Unset the fields we don't want in a free checkout.
    function wc_unset_unwanted_checkout_fields( $fields ) {
        // Add or remove billing fields you do not want.
        // @link http://docs.woothemes.com/document/tutorial-customising-checkout-fields-using-actions-and-filters/#section-2
        $billing_keys = array(
            'billing_company',
            'billing_phone',
            'billing_address_1',
            'billing_address_2',
            'billing_city',
            'billing_postcode',
            'billing_country',
            'billing_state',
        );

        // For each unwanted billing key, unset.
        foreach( $billing_keys as $key ) {
            unset( $fields['billing'][$key] );
        }

        return $fields;
    }
    add_filter( 'woocommerce_checkout_fields', 'wc_unset_unwanted_checkout_fields' );

    // A tiny CSS tweak for the account fields; this is optional.
    function wc_print_custom_css() {
        ?>
        <style>
            .create-account {
                margin-top: 6em;
            }
        </style>
        <?php
    }
    add_action( 'wp_head', 'wc_print_custom_css' );
}
add_action( 'wp', 'wc_free_checkout_fields' );

答案 1 :(得分:1)

使用WC() - &gt; cart-&gt; needs_payment()检查检查结帐是否没有费用。 有关详细信息,请参阅此 https://www.skyverge.com/blog/how-to-simplify-free-woocommerce-checkout/

答案 2 :(得分:0)

有数不清的WooCommerce插件可让您做到这一点。这样的一种(免费的)是这样的:https://wordpress.org/plugins/download-now-for-woocommerce/

您还可以建立一个会员站点,在该站点中您可以更好地控制单个用户或产品。