Archived topic
Nested Comments Reply Link
3 replies · Started by jonni on April 27, 2018
I just switched over to Generate Press a few days ago, and the Reply link on my nested comments disappeared. It shows when I look at the page source, but not on the actual page. I haven't added any CSS code to make them go away unless Elementor Pro does that automatically. Help??
Hi there,
I can see the reply link no problem: http://www.screencast.com/t/DV6WStiF
Let me know if that's not what you are referring to :)
Yes, one of my readers pointed it out, and I changed the text color to make it show up better, which did help. Our last theme put the reply link below the comment instead of above it. Is there a way to move it on GP?
Hmm, you could try something like this:
add_filter( 'comment_text', 'tu_add_reply_link' );
function tu_add_reply_link( $text ) {
echo $text;
comment_reply_link();
}
Adding PHP: https://docs.generatepress.com/article/adding-php/
Not 100% sure it will work, but worth a shot :)