Changing the link for "Leave a Comment" meta

Hello!

I’d like the “Leave a Comment” link to take the user to the facebook comments section.

I tried the solution in this thread:

It didn’t work, and it still adds #respond to the url instead of #comments. I tried changing $link = ‘#comments’; to ‘#facebook’ and that didn’t work either.

Please help.

Hi,

Can you provide us your site url so we can take a closer look.

Thanks

staging.webfriendly.com

your login deets are in the secure note

Hello There,

The code in the thread your pointed out will only work if your are using Renew stack. Since you are using Integrity stack, you will need a different code. Please add the following code in your child theme’s functions.php file

// Custom Comments link
// =============================================================================
function add_custom_comment_link(){
  return '#comments';
}
add_filter('x_entry_meta_comments_link', 'add_custom_comment_link');
// =============================================================================

Hope this helps. Please let us know how it goes.

Yep, that worked. Thank you!

You’re welcome! :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.