I have arranged my landing page as a group of eight categories that link to the sub-categories, which then link to the array of products in that category. But on that last page the image of that sub-category appears side to side at the top. How to remove that image and replace it with a heading? That image, which I discovered by inspecting the element with Chrome, appears to be a category-thumb…
Thanks,
Tim Garvin
Enfold theme
Open up wp-contentthemesenfoldconfig-woocommerceconfig.php and delete following line:
if($image) echo "<div class='page-thumb'>{$image}</div>";
If you want to replace it with the term name replace the line above with
echo $term->name;
I did this and it had no effect at all. I will make the site available on the web so you can see the result later today. Tim