Support » Theme: Nisarg » Remove help link from Read More

  • 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

    • This topic was modified 3 years, 11 months ago by andrewgj.
    • This topic was modified 3 years, 11 months ago by andrewgj.
    • This topic was modified 3 years, 11 months ago by andrewgj.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Remove help link from Read More’ is closed to new replies.