• Resolved biggatings

    (@biggatings)


    Is there a way to have a list of sides that can be included in the combo without a price associated with them? If I leave it blank it reverts to $0.00. Is there a way (maybe by css) to remove pricing for a specific menu?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author PriceListo

    (@pricelisto)

    So right now it would have to be hidden with CSS using nth-child selector. You can read more about it here.

    But basically let’s say you want to hide all prices in a third group on the menu. You would use code such as the following:

    .brm-menu .brm-menu-section:nth-child(3) .brm-item-price {
    	display: none; 
    }

    I will note for future update to add group id and item id’s to the html markup so that each element can be individually targeted.

    Let me know if that makes sense.

    Thread Starter biggatings

    (@biggatings)

    This is my shortcode:
    [brm_restaurant_menu groups=”1,8,5″ show_items=”1″ view=”minimalist”]

    The menu that I don’t want prices shown is Group 8. When I use your code:
    .brm-menu .brm-menu-section:nth-child(8) .brm-item-price {
    display: none;
    }

    It does nothing. It still shows $0.00 for the items. Maybe I am not understanding. Can you assist?

    Plugin Author PriceListo

    (@pricelisto)

    The number you use in CSS code will the order that group shows up on that page. So in your case, you have 3 groups showing up, so try 1, 2, or 3 in the nth-child. I think it should be 2, but try all 3.

    If that doesn’t work, feel free to send me the page URL using this form and I can take a look at it:
    https://www.pricelisto.com/contact

    • This reply was modified 4 years, 10 months ago by PriceListo.
    Thread Starter biggatings

    (@biggatings)

    Worked! Thanks much for the help!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Sides with no price’ is closed to new replies.