Please submit a private ticket if you need to share sensitive information, such as license details and admin credentials.

Okay
  Public Ticket #3551416
Cart Menu Item to launch fly to cart
Open

Comments

  •  2
    JB started the conversation

    Hi, is it possible to have a Cart page in a submenu link to the fly  to cart?


    I have the cart menu item under a store page menu item.


    I had a look at the option to add to Menu1 for instance but this wasn't what I was chasing in terms of position in the menu.


    Thankyou, JB

  •  767
    Janilyn replied

    Hi JB,

    Thank you for contacting WPClever Support Forum. 

    We wish you a very happy, successful year ahead. Our team has just come back from our long year-end vacation so today we are able to process your ticket.

    We’ve received your ticket and assigned one of our developers to help you with that. 

    He’ll be looking into your question and responding with specific instructions as soon as possible. 

    Please stay patient as we're having very heavy workloads, it might take some time for our developers to reach back.

    Best regards.

    Janilyn T. - WPClever Support Agent

  •  2
    JB replied

    Thankyou

  •  1,222
    Dustin replied

    Hi JB, 

    Yes, you can do that. Please follow these steps https://app.screencast.com/eizuZTtFgGnUR

    The CSS class needs to be added to the sub-menu is:

    woofc-menu-item

    Best regards,
    Dustin

  •  2
    JB replied

    Awesome thankyou Dustin,


    I will give that a go. Cheers, Johnny

  •  2
    JB replied

    Thanks Dustin works a treat. Just couple of additional thing is it possible to Prefix the icon and price with the Word Cart?,


    and is it possible to change the number of items in cart background colour from red to another colour?


    Thank you, JB

  •  1,222
    Dustin replied

    #1. To add a word to the cart menu, please add below CSS code to WP-Admin → Appearance → Customize → Additional CSS:

    .woofc-menu-item a:before {
        content: 'Cart';
        display: inline-block !important;
        margin-right: 10px;
    }

    And the result https://app.screencast.com/T7EQdmE2VWY1e

    #2. To change the count background color, please add below CSS code to WP-Admin → Appearance → Customize → Additional CSS:

    .woofc-menu-item .woofc-menu-item-inner:after {
        background-color: #00cbb4 !important;
    }

    You can change the color code as you want.

    Best regards,
    Dustin

  •  2
    JB replied

    Perfect. Thanks Dustin!