Change Categories in the top menu
After upgrading to 3.1.3 I can no longer change the 'Catergories' to a name of my choice in the top nav bar.
<li class="mega"><a href="#"><?php _e('Categories','appthemes'); ?></a>
<div class="adv_categories" id="adv_categories">
<?php echo cp_cat_menu_drop_down( get_option('cp_cat_menu_cols'), get_option('cp_cat_menu_sub_num') ); ?>
</div><!-- /adv_categories -->
</li>
and changed it to:-
li class="mega"><a href="#"><?php _e('Bikes for Sale','appthemes'); ?></a>
<div class="adv_categories" id="adv_categories">
<?php echo cp_cat_menu_drop_down( get_option('cp_cat_menu_cols'), get_option('cp_cat_menu_sub_num') ); ?>
</div><!-- /adv_categories -->
in the /classipress/includes/theme-header.php but it is not updating on my site.
What am I missing?
Thanks Kim