• Resolved klapsimo

    (@klapsimo)


    Hi, thank you for this great theme. I would like to know if there is a way to remove commas in between tags on single pages. They look awkward and unnecessary. Thanks a lot.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author CrestaProject

    (@crestaproject)

    Hi klapsimo,
    you can do it, but you need to edit the theme code.
    Go to “../wp-content/themes/fortunato/inc/template-tags.php” at the row 137 and you will find this:

    $tags_list = get_the_tag_list( '', esc_html__( ', ', 'fortunato' ) );

    now replace with this:

    $tags_list = get_the_tag_list( '', esc_html__( ' ', 'fortunato' ) );

    This removes commas between tags ??
    Best Regards,
    CrestaProject

    Thread Starter klapsimo

    (@klapsimo)

    Hello,

    Thanks a lot. It worked! All the best.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing commas in between tags-links’ is closed to new replies.