Search for: Log In Free Support [Resolved] Modify the footer entry meta Home › Forums › Support › Modify the footer entry meta This topic has 5 replies, 2 voices, and was last updated 6 months, 4 weeks ago by David. Viewing 6 posts - 1 through 6 (of 6 total) Author Posts June 26, 2020 at 3:00 am #1342379 William Hello Team π How can I add a small string of text (E.g. See more articles) in front of the categories list in the footer entry meta section? Please see this screenshot to visual what I am trying to achieve! https://ibb.co/YTVwP7G Cheers! June 26, 2020 at 3:08 am #1342386 DavidStaff Customer Support Hi there, i am not sure if that image is helping …. do you want the text before the category terms instead of the icon? eg. See more articles: term1, term2, term3 Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ June 26, 2020 at 3:34 am #1342409 William Hello David, Yes exactly as you described. See more articles: term1, term2, term3 π June 26, 2020 at 4:43 am #1342445 DavidStaff Customer Support Try adding this PHP Snippet: add_filter( 'generate_category_list_output', function( $output ) { if ( !is_single()) { return $output; } return '<span class="category-label">See more articles: </span>' . $output; } ); https://docs.generatepress.com/article/adding-php/ It may need some styling – if it does share a link to your site so i can take a look. Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ June 26, 2020 at 7:27 am #1342599 William Perfect, thank you π June 26, 2020 at 7:32 am #1342604 DavidStaff Customer Support You’re welcome Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ 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