Remove Leave a Comment under Posts and Replace with Contact Link

The whole Comment section under each Blog Post I need to remove completely and replace with a link to the Contact page. Can you give me some direction please where this is located? Thank you.

Hi @razormicro,

To get rid of the comment area, you may apply the same thing as the suggestion from your previous post here:

Then to add a link to the contact page under the post content, you can make use of the x_before_the_content_end hook.

In the functions.php of the child theme, you’ll have something like:

add_action( 'x_before_the_content_end', 'x_after_post_content', 999 );

function x_after_post_content(){
	if(is_singular( 'post' )){
		echo '<a href="THE_LINK_TO_THE_CONTACT_PAGE">Contact Page</a>';
	}
}

Kindly note that since this is a custom code that changes the default behavior/display of the theme, you will be responsible to maintain or update the code in case you require further changes or if the code stops working in future updates. If you are uncertain how to proceed, it would be best to get in touch with a developer.

Hope this helps.

Adding this to the functions.php worked great thank you.

Is there a way to remove the Leave A Comment area under a Blog Post within the code so not having to remember to check the box on each individual Post?

Hi @razormicro,

Removing it via code is possible but that is outside the scope of our support.

You have another option. Disabling comments for post in bulk. See this article for guidance.

Hope this helps.

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