• Hello guys,

    can i ask for help with blog-config.php?

    I need to show category name without link.

    From this:

    <span class="cat-links"><a href="/category/folders/" rel="category tag">Folders</a></span>

    To this:

    <span class="cat-links">Folders</span>

    Can somebody help me, thx for your time?!

    • This topic was modified 1 year, 5 months ago by deighteu.
    • This topic was modified 1 year, 5 months ago by deighteu.
Viewing 1 replies (of 1 total)
  • Hi @deighteu,

    If you would like to make the Category name is not clickable, why don’t you just use CSS? Something like the following might work

    .cat-links {
      pointer-events: none;
      cursor: default;
      text-decoration: none;
      color: inherit;
    }

    Anyway, customization is actually something that we are not offering to support. Let’s see if there’s someone comes up with any code or idea how to achieve it.

    Kind regards,
    Herman ??

Viewing 1 replies (of 1 total)
  • The topic ‘Category no link’ is closed to new replies.