Remove three dots above ‘Read More” link on homepage
-
Hi everyone,
I’d like your help on removing the three dots that are displayed about the ‘Read More’ link for an excerpt on the homepage. I’ve tried a couple of codes already in my theme’s functions.php file, but none of them worked. Below you’ll find two of the codes I’ve tried already. Do you have any other tips or code snippets that I can try out?
My theme is Foodie Pro.
Really appreciate your help.
Thanks and best regards,
Ramona/*
* 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 );`
/*
* Remove three dots from read more link
*/
function replace_content( $content) {
$content = str_replace(array( ‘[…]’, ‘[…]’, ‘…’ ), ”, $content);
return $content;
}
add_filter(‘the_content’,’replace_content’);The page I need help with: [log in to see the link]
- The topic ‘Remove three dots above ‘Read More” link on homepage’ is closed to new replies.