Archived topic
Woocommerce Shop: Move Page title and breadcumbs on top
13 replies · Started by Daniele on July 16, 2020
Hi,
how can I Move Page title and breadcumbs on top of Woocommerce Shop template, using a left-sidebar layout? (p.s. I was searching for this template but I didn't found it)
I want to show title before the sidebar/content
thanks
Hi there,
Any chance you can link us to the site in question?
You can edit the original topic and use the private URL field.
Let me know :)
Hi Leo,
I can link a WP access, but is not visible without logging it.
Maybe this could help:

if you want to access the website please share an email address
thanks!
You would need to use the header element module:
https://docs.generatepress.com/article/header-element-overview/
You'd need to check with WooCommerce' support to see how to output the breadcrumbs using a shortcode or function format.
Thanks,
pls can you tell me which is the php template used in the shop?
p.s. I used this for Woocommerce breadcumb shortcode:
function woocommerce_bcm() {
woocommerce_breadcrumb();
}
add_shortcode( 'woocommerce_bc', 'woocommerce_bcm' );
That case you can add the shortcode using a hook in the desired location:
https://docs.generatepress.com/article/hooks-element-overview/
https://docs.generatepress.com/article/hooks-visual-guide/
can you tell me which is the php template used in the shop?
Have you tried the hook solution?
It's definitely the better and much easier way to go.
Then you wouldn't have to modify the template at all.
Yes it's working, but I need the template for another little modify
thanks
Can you open a new topic for the new question and provide a little more details of what you'd like to achieve?
The shop template should be in WooCommerce plugin folder as the theme doesn't handle that.
Ah ok ,
so the template used is the Woocommerce standard one, not a custom developed by you, right?
Hi there,
thats correct, GP leaves the Woocommerce plugin to provide the templates.
thanks
You're welcome