Home › Forums › Support › I want to remove “read more…” excerpt function in rss feed This topic has 5 replies, 3 voices, and was last updated 2 years, 11 months ago by Tom. Viewing 6 posts - 1 through 6 (of 6 total) Author Posts February 17, 2020 at 9:18 am #1168256 loop which code should I edit? February 17, 2020 at 10:46 am #1168360 LeoStaff Customer Support Hi there, Looks like you are using Elementor to display posts so have you checked with their support? Let me know 🙂 Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ February 18, 2020 at 6:52 am #1169214 loop How about under each individual category? It’s consider under GP right? February 18, 2020 at 7:37 pm #1169840 TomLead Developer Lead Developer Hi there, Do you want no read more option at all? If not, try this: add_filter( 'generate_excerpt_more_output', function( $more ) { if ( is_feed() ) { return ''; } return $more; } ); add_filter( 'the_content_more_link', function( $more ) { if ( is_feed() ) { return ''; } return $more; } ); Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ Ongoing Development: https://generatepress.com/ongoing-development February 20, 2020 at 10:24 pm #1172212 loop Hi Tom, I’ve placed the code in functions.php but it’s not reflecting any changes 🙁 February 21, 2020 at 9:07 am #1172819 TomLead Developer Lead Developer Strange, do what do you have set as the “For each post in a feed, include:” option in Settings > General? Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ Ongoing Development: https://generatepress.com/ongoing-development Author Posts Viewing 6 posts - 1 through 6 (of 6 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In