Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author tugbucket

    (@tugbucket)

    You’ll probably need to hard code it and then exclude it from the shortcode eg: exclude="3d"

    Thread Starter mica123

    (@mica123)

    Thank you very much for your reply. Would you be able to advise me how I could hardcode it and where?

    Many thanks.

    Thread Starter mica123

    (@mica123)

    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 (https://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.

    Plugin Author tugbucket

    (@tugbucket)

    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.

    Thread Starter mica123

    (@mica123)

    Yes, thank you very much, it works perfectly. It also works with the manual shortcode to get the columns lined up properly.

    Many thanks.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘3d tag’ is closed to new replies.