Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #1511621
Guest Checkout and how to remove shopping cart icon
Closed

Comments

  • VentureMom started the conversation

    Hi, we have the guest checkout enabled but customers are asked to register and checkout when they sign up for their subscription (set up in our woocommerce). How do we fix this?

    Second, how do we remove the shopping cart icon from the header of the website - we don't want people seeing this.


    Thank you so much,

  • [deleted] replied

    Hi,

    1. Sorry, not quite sure what do you mean. Can you pls provide more details with screenshots?

    2. You need install child them and add next code to its functions.php file:

    function thegem_child_init() {
        remove_filter('wp_nav_menu_items', 'thegem_cart_menu', 11, 2);
    } add_action('init', 'thegem_child_init');