Replies: 0
Hi I want to remove the 3 dots … which is a help link automatically added to the Read More link
I found this code here
https://wordpress.org/support/topic/remove-3-dots-above-read-more-link/
/*
* Remove helip from read more link
*/
function remove_helip_from_read_more( $output, $output_filter ) {
$output = str_replace( '…', '', $output );
return $output;
}
add_filter( ‘astra_post_link’, ‘remove_helip_from_read_more’, 10, 2
but am not sure where it should go the original post said in a child theme but cant find that and it doesn’t work in Aditional CSS
any ideas thanks