Archived topic
disable tag icon
3 replies · Started by Aaron on February 24, 2022
Viewing posts 1–4 of 4
I noticed https://docs.generatepress.com/article/generate_svg_icon_element/, but this is only for icon replacement. How can I avoid to output an icon at all? I tried to return null but still get <span class="gp-icon icon-tags"></span>
Hi there,
Try this snippet:
add_filter( 'generate_inside_post_meta_item_output', function( $output, $item ) {
if ( 'tags' === $item ) {
$output = '';
}
return $output;
}, 50, 2 );
Thank you, this worked!
No problem :)
This archived topic is closed to new replies.