• Resolved dusemedia

    (@dusemedia)


    Thanks for a good plugin! Is it possible to list tags [scf-post-tag] in a bullet list (UL) instead of in one row with commas?

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

    (@wpmadeasy)

    You can use following technique to achieve that, infact it doesn’t produce list-item tags but mimics the display.

    Use a space as a separator and a DIV tag to surround the output, for example:
    [scf-post-tag output="div" separator=" " type="link"]

    Then apply following CSS in your theme’s style sheet:

    .scf-post-tag a {
        display: list-item;
    }

    .scf-post-tag is the default class applied to the wrapper element, while notice that I used “link” as type of the output. Because in simple “text” type output you may not find it easy to reference a single term.

    However, I’ve noted your question as a suggestion. Hopefully we will be able to roll out this in next version.

    Thanks.

    • This reply was modified 6 years, 2 months ago by WPMadeasy.
Viewing 1 replies (of 1 total)
  • The topic ‘Display tags in bullet list?’ is closed to new replies.