• The default language of any content posted is English.
WooCommerce Direct Checkout PRO

WooCommerce Direct Checkout PRO 3.1.2 NULLED

raz0r

owner
Staff member
Administrator
Moderator
Messages
16,365
Reactions
61,958
raz0r submitted a new resource:

WooCommerce Direct Checkout PRO - Simplifies the checkout process to improve your sales rate.

View attachment 2167

WooCommerce Direct Checkout PRO allows you to simplify the checkout process and increase your conversion rates.Redirect your customers from the product page to the checkout and let them edit and confirm the order on the same page.

One-page checkout​

With WooCommerce Direct, you can include the cart form in the checkout page allowing your users to edit the cart and confirm the order on the same page.

Removecheckout...​


Read more about this resource...
 
To remove the warning edit that file:
wp-content\plugins\woocommerce-direct-checkout-pro\jetpack_vendor\quadlayers\wp-license-client\src\Backend\Notice\Load.php
Remove this line at line 29:

PHP:
    public function add_notices() {

        $activation = $this->activation->get();

        if ( ! empty( $activation['license_key'] ) ) {
            return;
        }

        $license_menu_url = $this->plugin->get_menu_license_url();

        if ( ! $license_menu_url ) {
            return;
        }

        ?>
        <div class="notice notice-error" data-notice_id="quadmenu-user-rating">
            <div class="notice-container" style="padding-top: 10px; padding-bottom: 10px; display: flex; justify-content: left; align-items: center;">
                <div class="notice-content" style="margin-left: 15px;">
                    <p>
                        <b><?php printf( esc_html__( 'Please activate your %s license key.', 'wp-license-client' ), $this->plugin->get_name() ); ?></b>
                        <br/>
                        <?php esc_html_e( 'Please complete the license activation process to receive automatic updates and enable all premium features.', 'wp-license-client' ); ?>
                    </p>
                    <a href="<?php echo esc_url( $license_menu_url ); ?>" class="button-primary">
                        <?php esc_html_e( 'Activate', 'wp-license-client' ); ?>
                    </a>
                    <?php if ( $this->plugin->get_license_key_url() ) : ?>
                        <a href="<?php echo esc_url( $this->plugin->get_license_key_url() ); ?>" class="button-secondary" target="_blank">
                            <?php esc_html_e( 'Get license key', 'wp-license-client' ); ?>
                        </a>
                    <?php endif; ?>
                    <?php if ( $this->plugin->get_support_url() ) : ?>
                        <a href="<?php echo esc_url( $this->plugin->get_support_url() ); ?>"target="_blank">
                            <?php esc_html_e( 'Get support', 'wp-license-client' ); ?>
                        </a>
                    <?php endif; ?>
                </div>
            </div>
        </div>
        <?php

    }
 
Top