Site logo

Archived topic

Product categories on homepage and shop

1 reply · Started by Pedro on December 22, 2019

Viewing posts 1–2 of 2

Hello! I would like to show the product categories on the homepage and shop.

As shown on the shop page in the niche template.

Hi there,

Niche is using a Hook Element with this content:

<?php
$cat_args = array(
	'orderby'    => 'name',
	'order'      => 'asc',
	'hide_empty' => true,
);
 
$product_categories = get_terms( 'product_cat', $cat_args );
 
if ( ! empty( $product_categories ) ) {
	echo '<ul class="woo-cat-nav">';
		foreach ( $product_categories as $key => $category ) {
			printf( 
				'<li>
					<a href="%1$s">
						%2$s
					</a>
				</li>',
				get_term_link( $category ),
				$category->name
			);
		}
	echo '</ul>';
}
?>

The hook is set to "woocommerce_archive_description" and "Execute PHP" is checked.

These are the Display Rules: https://www.screencast.com/t/ENlaz82e

Hope this helps :)

This archived topic is closed to new replies.