Skip to content

Instantly share code, notes, and snippets.

@corsonr
Last active March 2, 2021 18:14
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save corsonr/6681929 to your computer and use it in GitHub Desktop.
Save corsonr/6681929 to your computer and use it in GitHub Desktop.
WooCommerce - Create a product categories dropdown list in a shortcode
<?php
/**
* WooCommerce Extra Feature
* --------------------------
*
* Register a shortcode that creates a product categories dropdown list
*
* Use: [product_categories_dropdown orderby="title" count="0" hierarchical="0"]
*
*/
add_shortcode( 'product_categories_dropdown', 'woo_product_categories_dropdown' );
function woo_product_categories_dropdown( $atts ) {
extract(shortcode_atts(array(
'count' => '0',
'hierarchical' => '0',
'orderby' => ''
), $atts));
ob_start();
$c = $count;
$h = $hierarchical;
$o = ( isset( $orderby ) && $orderby != '' ) ? $orderby : 'order';
// Stuck with this until a fix for http://core.trac.wordpress.org/ticket/13258
woocommerce_product_dropdown_categories( $c, $h, 0, $o );
?>
<script type='text/javascript'>
/* <![CDATA[ */
var product_cat_dropdown = document.getElementById("dropdown_product_cat");
function onProductCatChange() {
if ( product_cat_dropdown.options[product_cat_dropdown.selectedIndex].value !=='' ) {
location.href = "<?php echo home_url(); ?>/?product_cat="+product_cat_dropdown.options[product_cat_dropdown.selectedIndex].value;
}
}
product_cat_dropdown.onchange = onProductCatChange;
/* ]]> */
</script>
<?php
return ob_get_clean();
}
@generaltest
Copy link

Hi there,

Great piece of code. Unfortunately I am not a huge coder and I am looking for simple solution. I would like to see a simple drop-down list all all products that I have (filters are also welcome) on WooCommerce. Is this something easily done? Thank you

@Misplon
Copy link

Misplon commented Oct 16, 2014

@generaltest, it's relatively easy to implement the above. Ideally you should create a child theme: https://codex.wordpress.org/Child_Themes. Within your child theme create a file called functions.php. You can create this file in a plain text editor. Then insert the above code into functions.php and save it. To insert the category drop down menu in your site, use the shortcode: [product_categories_dropdown orderby="title" count="0" hierarchical="0"].

All the best.

@freekneerhoff
Copy link

Hi! This works for me but i get a nasty error message:
Warning: Illegal string offset 'show_counts' in /home/nostrapassione.com/public_html/wp-content/plugins/woocommerce/includes/wc-term-functions.php on line 114

What to do?
THX Freek

@frauschneize
Copy link

Does not work properly. Throws a bunch of Warnings (like Freek posted already). 👎

@suifengtec
Copy link

wc_product_dropdown_categories

@tremblayly
Copy link

Hi
I just tried this and it does not work. I added the snippet into my functions.php file in my child theme. Added the shortcode exactly as per Misplon's instructions and all I see is the shortcode displayed as content.

Am I doing something wrong? Any help would be appreciated.

Thanks
Lyse

@wischnja
Copy link

I use WooCommerce version 2.1.12. The problemm with "Warning: Illegal string offset 'show_counts' ..." is the wrong variable name in line 17. To take 'count' -> 'show_counts' and it works.

regards
max

@DigitalNomadStu
Copy link

DigitalNomadStu commented Jul 10, 2016

Can anyone verify this works on WooCommerce 2.6.2?

The shortcode displays the drop-down with the categories, but the script doesn't seem to fire to change the page.

When I view the source, it's showing class="dropdown_product_cat" on the select element, so document.getElementById doesn't work to trigger the page change to the category's page(?). Any help converting the script to trigger on the class would be appreciated.

(edit: going into wc_term_functions.php and changing "class=" to "id=" on dropdown_product_cat allows this code to function.)

@misraX
Copy link

misraX commented Nov 4, 2016

'count' => '0',
to
'show_count' => '0'
fixed the prob of illegal string as the main function require show_count
for document.getElementById u can replace it with jQuery(".dropdown_product_cat");

@prerna273
Copy link

I also tried it and .......everything is working fine......but its not redirecting me to that category page which i selected from the drop down ...anyone help please

@keessonnema
Copy link

@prerna273 That's probably because you are using SEO friendly urls. It is not working for me too, for that reason I think. Try with standard urls

@studiobenvenuti
Copy link

My sites sells spare parts for motorcycle. What i would like to do is a box where i can select firstly the make, then (in another box, deactivated until i select the make) the model, and then the year. Is it possible to do modyfing this code?
Thank you very much!

@TChord22
Copy link

TChord22 commented Jun 3, 2019

Remove the <?php at the top of this piece of code when you paste it into your functions.php page.
Happy Coding!

@jkpvs14
Copy link

jkpvs14 commented Mar 12, 2020

Hi, I added this code to my child theme and also added some extra CSS to only show this on my mobile views - works great for that.

Just two questions, what do I need to change in the code to rather the categories order not go by title but sort it by the category order I've set on the admin side?

And secondly, how do I remove the number of items showing in the brackets after each category name e.g. Category (3) ?

Thank you in advance.

Regards,
Jhorene

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment