Hello,
How can I replace the "Browse Categories" text above the icons with the category description of each selected category?
I've tried to edit the inc.category.php file:
Instead of
<div id="top-cat">
<div class="cat-inside">
<h1><?php _e('Browse Categories', 'zara'); ?></h1>
I've changed to:
<div id="top-cat">
<div class="cat-inside">
<h1><?php echo osc_category_description(); ?></h1>
but it's not working.
Please help me.