You currently use the 456industry theme that could not be found in the wordpress.org/themes/ directory. I recommend asking at your theme’s support channel, so you can get support from the people who know it best.
Kind regards
The site was developed by someone and I don’t have contact of theme developer. I now host the site myself. That’s why I need to figure out myself.
Moderator
Jan Dembowski
(@jdembowski)
Forum Moderator and Brute Squad
Moved to Fixing WordPress, this is not an Developing with WordPress topic.
I have still not found a solution..
I took professional help. Developer added following code to content-product.php file under class=”item-details”.
Before
<?php woocommerce_get_template( 'loop/price.php' );?>
<div class="item-details">
<h3><?php the_title(); ?></h3>
<div class="product-item-cat"><?php echo $product->get_categories(', ');?></div>
</div>
After
<?php woocommerce_get_template( 'loop/price.php' );?>
<div class="item-details">
<h3><a href="<?php echo get_permalink(); ?>" class="custom-link"><?php the_title(); ?></a></h3>
<div class="product-item-cat"><?php echo $product->get_categories(', ');?></div>
</div>