will7914
Forum Replies Created
-
Hello,
I’m just discovering zerif-lite, and got same issue as you (i have version 1.8.3.5)
It seems they have added a special template for woocomerce shop page.
The file name is “woocommerce.php” and you’ll notice it doesn’t call any sidebar.So, what i did in my child theme :
– copy “single.php” into my child theme directory and rename it as “woocomerce.php”
– replace php code in <main></main> by
<?php woocommerce_content();?>
However, please note any page/posts will have same widgets as your shop page. So you’ll have to set them using “full width” layout.
If anyone has a better solution, meaning a sidebar dedicated to woocommerce pages, please post here ??
Hello
Not sure to have understood your request. But to add some items in this page, you’ll have to create a page using “Menu items, full width” or “Menu items, with side bar”.
Then, you create menu categories, from the section “Menu items”.
And still in that section, you create your dishes, one by one. Don’t forget to choose the category where your dish should appear.
I hope I helped you … !
Forum: Everything else WordPress
In reply to: WordPress.com HostingThank you
I didn’t know that :
[wordpress] comes in two flavors: the fully hosted WordPress.com, and the self-hosted version, whose software is available for free at www.remarpro.com.
Thank you very much !
Forum: Themes and Templates
In reply to: [Restaurateur] Order dishes list by category, then by creationHello. In topic, when I say “order”, I meant “sort”. Sorry for my frenglish ??
Forum: Themes and Templates
In reply to: [Restaurateur] Change the order of the menu itemsHello. I found how to do that.
1) In back office, when you create your menu categories, in the “id” part, set a number, for example : “0-dessert”, “1-starters”, “2-drinks”
2) In menu-items-template.php and menu-items-template-full.php, line 19, replace
$terms = get_terms('menu_item_category');
by
$terms = get_terms('menu_item_category', array ( 'orderby' => 'slug' ));