-
Add Polylang support to the ACF relationship
Polylang & Advanced Custom Fields Polylang is the most popular multilingual plugin available on the WordPress repository. As per their stats, there are 700,000+ users were installed this plugin on their sites. On the other hand, Advanced Custom Fields aka ACF is a wildly used plugin that allows you to take full control of the…
-
How to show category name in woocommerce products page
<?php global $post; $terms = get_the_terms( $post->ID, ‘product_cat’ ); foreach ($terms as $term) { //$product_cat_id = $term->term_id; break; } ?> <h2 class=”page_title”><?php echo $term->name; ?></h2>