Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Subrata Mal

    (@subratamal)

    @famoir Please the attached code in the theme functions.php file to remove wallet related styles and scripts from the site if users are not logged in.

    add_action( 'wp_enqueue_scripts', 'woo_wallet_deregister_scripts', 100 );
    function woo_wallet_deregister_scripts() {
        if(!is_user_logged_in()){
            wp_dequeue_style( 'woo-wallet-style' );
            wp_dequeue_style('woo-wallet-payment-jquery-ui');
            wp_dequeue_script('wc-endpoint-wallet');
        }
    }
    Thread Starter famoir

    (@famoir)

    very thank you

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘remove woo wallet css’ is closed to new replies.