Hi jacek_sliwek
Thank you for create a new post.
Are you remove category links all?
Try below.
Add functions.php first line (<?php before )
add_filter( 'the_category', 'my_remove_category' ,10, 3);
function my_remove_category( $categories, $separator, $parents ) {
if ( $separator == ' ' ) {
return;
}
return $categories;
}
I do it in theme child and I don’t have anything.
White site, and now I can’t chance theme now.
HELP
everything is ok, below is printscreen and it show what I want remove.
http://trebor-tim.com.pl/post.jpg
only words “bez kategorii”, but I want to have a frame or some separator between posts.
I’ve included the code below, meybey it help someone
.entry-meta a[href$='cat=1']{
display:none;
}