• Resolved miguelhh

    (@miguelhh)


    Hi, when using sort_alpha_groups is it possible to sort correctly by alphabetical order?
    [mctagmap taxonomy=”post_tag” responsive=”yes” width=”100px” columns=”2″ sort_alpha_groups=”a|á,e|é,i|í,o|ó,u|ú”]
    Without sort_alpha_groups the alphabetical order show correct.

    And a second question, in the title of each grouped letter, is it possible to show only the first one, for example in the alpha groups of E|é show only the letter E as title?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author tugbucket

    (@tugbucket)

    @miguelhh did you get this solved? I did a local test and they appear to group just fine.

    For the second part, you can use Jquery like:

    $(".tagindex h4").each(function(){
        var text = $(this).text().slice(0, 1);
        $(this).text(text);
    });
Viewing 1 replies (of 1 total)
  • The topic ‘alpha_groups is it possible to sort correctly by alphabetical order?’ is closed to new replies.