Hi,
in my blog grid, there are often shown more categories, and these are separated by a comma (“,”). I’d like to change this to a “|”, but I can’t seem to make it work. Also, I’d like the separator to be the same color as the rest of the minor meta. How can I go about that?
Best,
M
Hey Malene,
You need to copy this file to your child theme
/enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.php
and change this code:
$cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' ';
to this:
$cats .= get_the_term_list($the_id, $taxonomy, '', '| ','').' ';
If you need further assistance please let us know.
Best regards,
Victoria
Thank you so much… How can I change the color of the | ?
Best,
M
Hi Malene123,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
.html_elegant-blog #top .avia-content-slider .blog-categories {
color: #ccc;
}
If you need further assistance please let us know.
Best regards,
Victoria
Perfect – thank you so much!