Site logo

[Resolved] Shopping Cart icon

Home Forums Support [Resolved] Shopping Cart icon

Home Forums Support Shopping Cart icon

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #342712
    Frank

    Hi there, greetings!
    How can I make it so the Shopping Cart icon is only visible to logged in users.
    Can’t find any option or solution.
    THX in advance.
    Frank.

    #342863
    Tom
    Lead Developer
    Lead Developer

    Try this:

    add_action( 'after_setup_theme', 'tu_user_only_shopping_cart_icon' );
    function tu_user_only_shopping_cart_icon() {
        if ( ! is_user_logged_in() ) {
            remove_filter( 'wp_nav_menu_items','generatepress_wc_menu_cart', 10, 2 );
        }
    }
    #343217
    Frank

    Hi there,
    The snippet does the trick.
    THX for the help!
    All the best.

    #343245
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.