There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021
I need to remove all comment functionality on a site using Atahualpa. The admin option to turn comments off on pages is working. However, I haven't been able to figure out how to remove the commenting functionality off of posts.
Advice?
#2
Mar 26, 2009, 05:32 AM
Flynn
3,768 posts · Oct 2008
Munich, Germany
See Site admin -> Discussion -> Allow people to post comments on the article
#3
Mar 26, 2009, 10:54 AM
blueprairie
98 posts · Feb 2009
Thank you, I hadn't found this page. However, I must still be missing something...
In the Admin, I went to Settings --> Discussion
I cleared any check boxes remotely related to showing commenting, but I still see:
"January 26th, 2009 | Category: Homepage, News | Leave a comment" under the posts and when I click on the post link (either title or Leave a comment link), I see the Leave a Reply form box.
Ok, I did some searching and testing and I removed the following from index.php. Any reason this would be a problem? It is at least removing the Reply form on the pages.
Now I just need to remove the reference to comments in the post footer. Advice?
Code removed:
<?php // Load Comments template (on single post pages, and "Page" pages, if set on options page)
if ( is_single() OR ( is_page() && $bfa_ata_comments_on_pages == "Yes") ) {
if (function_exists('paged_comments')) {
paged_comments_template(); // If plugin "Paged Comments" is activated, for WP 2.6 and older
} else {
comments_template(); // This will load either legacy comments template (for WP 2.6 and older) or the new standard comments template (for WP 2.7 and newer)
}
} ?>
#5
Mar 26, 2009, 02:09 PM
blueprairie
98 posts · Feb 2009
And yet again, your fantastic admin does it all!
I modified the code in Appearance --> Athaulapa Theme Options --> Post/Page Info Items Tab and updated the Post Footer options found at the bottom of the page.