-
AuthorPosts
-
September 9, 2013 at 7:09 pm #29116
hello,
I’ve created a page, and have set it up to be the main “store” page for Woo:
http://www.atticusi.com/linked-beta/the-collection/
When I go into that page, I want to select the layout options that turn the header and sidebar off. It lets me do that, but they still show up. I’m assuming this is how Woo is handling pages.
I’ll be setting up all the other pages (cart, order, thank you, etc) and am assuming I may run into the same issue.
Where/what can I alter to fix this?
Thanks-
September 9, 2013 at 8:34 pm #139755Hi stonerome,
The WooCommerce page designation actually ignores all page settings. So you would need to use the WooCommerce hooks and filters to customize the page or create templates for it to use.
See: http://docs.woothemes.com/document/template-structure/
Regards,
Devin
September 9, 2013 at 9:20 pm #139756Thanks Devin,
Does it pull from the default page template then? Because actually we don’t want the breadcrumb info, or the sidebar on any pages, so we could just strip it out of the template all together if that’s what Woo is using. Thoughts?
September 10, 2013 at 7:14 am #139757Hi,
You can add this on your custom.css or Quick CSS to hide those elements.
.breadcrumb.breadcrumbs.avia-breadcrumbs {
display: none;
}
.single-product .sidebar.sidebar_sidebar_right.three.alpha.units {
display: none !important;
}Regards,
Ismael
September 10, 2013 at 2:06 pm #139758Thanks Ismael- thanks for the css, we’re getting closer but:
On our “main” store page, we’re still seeing the sidebar. Also- rather than just the breadcrumbs, we really want that entire black bar to be gone (that has the page title, and also had the breadcrumbs).
That black bar and page title is still showing on the individual product pages too.
http://www.atticusi.com/linked-beta/the-collection/
Thanks for the help!
September 10, 2013 at 2:18 pm #139759Hi,
You can add following code to Quick CSS to remove that black bar
.alternate_color { display: none; }
Regards,
Yigit
September 10, 2013 at 2:54 pm #139760Hi Yigit, thanks- that got the black bar – just not sure how to kill off the sidebar on this page:
September 11, 2013 at 5:06 pm #139761Follow the guide here in creating your own template for the woocommerce main shop page: http://docs.woothemes.com/document/template-structure/
Use the themes page.php as a model except hard code in the grid size and remove the sidebar.
-
AuthorPosts
- The topic ‘WooCommerce "Store Page" not recognizing layout options’ is closed to new replies.