Best way to customize shop pages #537
-
Hi there, I am really enjoying to build my new project based on the bootscore theme. However, right now I am having some difficulties / lackage in knowledge when it comes to customizing the shop pages. For example, I want to build a custom shop page. By default, the grid of WooCommerce products shows up. Let's say I want to insert an image and some text on top of the page. Also, I don't want to show all the products at once, but have a section that says "tickets", followed by products in that speficic cateogry. I have noticed, that overriding WooCommerce's core templates is not the best idea, since I would need to delete bootscore's "woocommerce.php" file. Maybe I am wrong and this is the intended way of customizing the template. I want to do it the right and clean way, so If you have any advice on how to customize shop pages using bootscore I'm very thankful.! :) Best, Tom |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Yes, You can add an image and text/custom HTML to the category. But the best way is to create a new page, design whatever you want and use shortcodes Solved? |
Beta Was this translation helpful? Give feedback.
Yes,
woocommerce.php
is used to get the breadcrumb right in place, filters won't work that way. So using this file is the best option even it doesn't allow to customise the shop pages.You can add an image and text/custom HTML to the category. But the best way is to create a new page, design whatever you want and use shortcodes
[products]
which are included https://woocommerce.com/document/woocommerce-shortcodes/#products.Solved?