Support

Account

Home Forums Front-end Issues Custom taxonomy show ID's instead of name Reply To: Custom taxonomy show ID's instead of name

  • Hi @puur

    Demonstrated in this Taxonomy doc, you could change the line in your code where you create the “li” and echo $ook to be something like:

    
    <li><?php echo $ook->name; ?></li>
    

    In the same code on the above linked page, it also shows how to get the link and description.

    Hope that helps!
    Keith