I'm really struggling with this so I was hoping someone could help me. I'm using woocommerce plugin, the products for the breadcrumbs only show the main category of a certain product, I would like it so that it could show the sub categories as well. For example, I would like it to be Bottoms > Leggings > Skirts. The woocoommerce breadcrumb code I have now only shows Bottoms:
<?php woocommerce_breadcrumb(); ?>
Is there anyone who might know how I can add this so that it shows the trail of sub categories in woo commerce category pages?
Thanks
Related
I have recently set-up my own blog on wordpress and added some 2-3 posts for a category, say A. There is also an option in the menu which has one page to give introduction of category A. This page (which gets opened by clicking Category A on menu) gives some brief description about the category. How can I make the posts related to category A appear after the description? I'm a newbie in wordpress. Any help will be appreciated!
Thanks
Instead of creating a page for certain category to show brief description about it. You can add description to the category. Navigate to the Posts >> Categories >> Find the category and hit edit. Where you can see the category description.
And as always you can set the category in menu! And it will display the brief description of category and all the posts in that category! Let me know if you still need any help! :)
I want there should be list of products category on my product listing page. And my Product listing will update according to that category list.
Check this png you will understand better.
https://www.dropbox.com/s/2jch15ohmi4k7zq/TY-Fountain_ProductMain_V2.png?dl=0
Any plugin or code help please? This plugin is close one but issue is this that there are no pagination.
https://wordpress.org/plugins/woo-tabbed-category-product-listing/
Thanks
Woocommerce has product archives built into it. All you have to do is link to the domain url with /product-category/category-slug/ on the end. Replace category-slug with the slug of any specific product category.
I'm setting up a new shop using the WooCommerce plugin and so far all is working 100% except now I'd like to only show the Top Level Categories on the home page instead of Categories and Sub Categories.
My shop has 4 main categories and 25-50 sub categories and it's making the home page look ugly.. is there an automatic way to only shop the top 4 catgegories or am I going to have to do this manually?
I'm using the ShopKeeper theme
http://themeforest.net/item/shopkeeper-ecommerce-wp-theme-for-woocommerce/full_screen_preview/9553045
hi you need to use woo commerce shortcode on shop page.
[product_categories number="4" parent="0"]
To show ALL top level categories:
[product_categories number="0" parent="0"]
Just a supplemental, enter the ID of the category within parent to display the children of that category. Easily find this by going to Products > Categories, hovering over the link of the required category and finding the ID in the URI.
I'm new to wordpress. I've instaled woocommerce plugin in wordpress 3.9.1. And installed the add-on https://github.com/dgrundel/woo-product-importer to import the products. I imported a csv file with 15 products. All those products are belongs to one category. But when I see the frontend that category page, it shows only 5 products. Rest of the products are missing. How can I fix this? Any help will be appreciated.
Thanks
WooCommerce has an easy (I think) solution to this problem if you're still looking for one. Just set-up a page for each of your products and use this shortcode:
[product_category category="appliances"]
Replace appliances with whatever your category name is. It shows all your products of that category and gets you out of the WooCommerce loop so you can add more styling and content to your page.
Try checking Settings > Reading and see what it shows under "Blog pages show at most:" thats setting dictates how posts get shown on a page before pagination. That setting also affects how many products WooCommerce displays.
I'm kinda new to wordpress and was wondering if I could do the following:
Let's say I have a site for a bakery and in the mainmenu on top there are four links:
Home - About - Products - Contact
Under the page products I would have a number of posts : Bread, cupcakes, ..etc. all of these posts would be categorized under the category products. Now if I go to the products page I want to see only these posts in a sidebar. Therefor I have two questions:
How can I connect this category to this page
How can I show the posts from this category in a sidebar
If anything is unclear please feel free to ask me, also if you would suggest another way of working please let me know.
Much appreciated, thanks!
[EDIT]
I have found that it is better to add a category for this products category instead of a page. Now I'm still looking to display a static post as an intro for this products category.
For connect this category to this page
you can set product to category archive page from
wp-admin/nav-menus.php
you can create a simple page template to list category post
you can use http://wordpress.org/plugins/list-category-posts/ plugin and use short code like [catlist name="news"] in you page content.