Home Forums Pro Themes Yummy Pro Issue with the item menu price

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #58089
    praveen prasanthan
    Participant

    I am facing a major issue with theme as i am not using reservation or online order so i disabled that plugins ,

    1. i need a menu with more than 8 items in the session it is possible to increase the number of items per session like lunch menu,dinner menu etc…
    2. I am not able to write the price of the food items like the way it is showing in the demo its showing some dots and i dont know where i can put the price to display in yellow bold letter as it in the demo theme.
    right now its showing only dots after each menu items like “sandwitch ……………………………” ,not showing the price after the dots.

    could you please help with this.

    #58115
    wensolutions
    Keymaster

    Hello @praveen ,

    Issue #1,

    To display more than 8 items in menu section you need to activate the child theme .

    You can even activate the child theme using the plugin given below:

    https://wordpress.org/plugins/wp-child-theme-generator/

    After activating the child theme in your child theme functions.php file paste below given code .

    https://gist.github.com/anonymous/9d62720a5dfc909b01612d04c5d92c95

    Now here in line no 53 and 81 change the no according to your requirement .

    Issue #2,

    In the demo version the WooCommerce product is displayed . If the section is set from page /post then the price won’t be displayed . So to display as in the demo you have to chose the option Woo Product category in content Type option .

    Create the product with the rates and assign them to the certain category and select that category to display in this section .

    Hope this helps .

    Best Regards!!

    #58195
    praveen prasanthan
    Participant

    Issue #2 : Here is the issue the food iteam not purchase through online , but as a restaurant theme we need menu with the item price. If i enable woocommerce plugin and select the product catergory in the content type then it will list the product with the price but then if we click it goes to add to the cart and there is cart icon showing on the top aswell. I dont need the online purchase option just the simple page site like the yummy free version .

    if the price listing only work with woocommerce product category i can setup that way how i can avoid the cart icon next to the menu on the top right and how to avoid add cart options .

    thanks for your help.

    #58204
    wensolutions
    Keymaster

    Hello @praveen ,

    The menu item along with the price will only be displayed after selecting from woo category .

    Now to remove the cart icon at header menu use below given CSS.

    For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

     .main-navigation li .cart-icon strong {
          display: none;
    }
    
    i.fa.fa-shopping-cart {
        display: none;
    }

    Finally to remove the add to cart button paste below given code in your child theme functions.php file.

    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );

    Hope this helps.

    Best Regards!!

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