Hide Numbers
- Related Options: show_navigation, group_numbers
NOTE: There is now the option sort_alpha_numbers that accomplishes this in the shortcode. I suggest using that option rather than a jQuery solution.
A request was brought up to be able to hide numbers. To do this I would suggest using jQuery to remove them from the DOM. Make sure to group your numbers.
Shortcode used:
<script>
jQuery('h4[id*="0-9"]').parent('div.tagindex').remove();
jQuery('#mcTagMapNav a[href*="0-9"]').remove();
</script>