Hi guys,
Reference to this post: https://kriesi.at/support/topic/change-after-post-date-remove-in-and-remove-last/
When the blog posts are listed ie. ‘domain.com/category/categoryname’ the formatting is the default one.
I have two other main categories and they are still the same. With the ‘/’ separator and a trailing one. Links in private.
Hey FlatText,
Try adding this css
.text-sep.text-sep-cat {
display:none;
}
If you need further assistance please let us know.
Best regards,
Victoria
Thanks Victoria! That worked.
I also changed the separator for the blog list by removing the .single from the code I was given by Ismael earlier.
//Change separator for posts-blogs
function ava_custom_script_mod(){
?>
<script type="text/javascript">
(function($){
$('.text-sep').text('>');
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'ava_custom_script_mod');