Alphabetical category list and sidebar category dropdown?

Hi,

I am looking to get the same alphabetical category list and sidebar drop down as the shown.

thanks

Brent

Hello Brent,

Thanks for writing in!

The example site is using WoodMart Widgets added in his sidebar. In your WP installation, you can go to Appearance > Widgets > Main Sidebar and insert WooCommerce Product Category widget in your main sidebar.

Hope this helps.

s you can see the entire list of product categories is quite long. I am looking to shrink that by having it set up as a drop down menu.

does that make sense?

https://commandshift.tech/wd/?product_cat=shop-by-aisle

thanks,

Brent

Hello Brent,

The example site is using 3rd party widgets. What we can do to make the list a little bit shorter is to use this custom nifty css. Though this does not be exactly the same as the example, it might just works out for you. Please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.widget_product_categories .product-categories .cat-item .children{
    display: none;
    transition: height 1s ease;
}

.widget_product_categories .product-categories .cat-item:hover .children {
    display: block;
}

Please note that custom coding is outside the scope of our support. Issues that might arise from the use of custom code and further enhancements should be directed to a third party developer.

Hope this helps.

Thanks Rue

As always, your support is amazing!!

Brent

Glad it helped, Brent.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.