You’ll probably need to hard code it and then exclude it from the shortcode eg: exclude="3d"
Thank you very much for your reply. Would you be able to advise me how I could hardcode it and where?
Many thanks.
I do hope to have a reply to this modified question: I would like to have the numbers displayed before letters. The screenshot you provided as an example for an index (http://blog.caplin.com/index/) shows that it is possible to sort the index with numbers before letters.
Could you, please, let me know how I can accomplish this?
Many thanks.
in mctagmap_functions.php around line 210 you should see:
$groups[$first_letter][] = $tag;
ksort($groups);
make it say:
$groups[$first_letter][] = $tag;
ksort($groups, SORT_STRING);
does that work?
If it does let me know and I’ll look into adding this into the shortcode in a future update.
Yes, thank you very much, it works perfectly. It also works with the manual shortcode to get the columns lined up properly.
Many thanks.