neilchatani
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: comments not displayingproblem solved! see this post: https://www.ads-software.com/support/11/9572
Forum: Your WordPress
In reply to: good idea? using php includesi fixed it myself. i modified the function comments_popup_link() in template-functions-comment.php
by commenting out the second line below, and commenting out the corresponding closing bracket at the end of the function ( hint: it is the second to last bracket ) i was able to defeat the check that stops the link from displaying on single posts. I don’t know why anyone would want it to be this way. The only thing i can think of is that they dont want other people’s voices being shown on their own post’s permalink. Anyway, without further ado:
global $comment_count_cache, $single;
//if (!$single) { //SHOW COMMENTS EVEN ON SINGLE POSTS!
if (” == $comment_count_cache[“$id”]) {Forum: Your WordPress
In reply to: Photosi had this same problem, and i fixed it. search for my other thread about it.
Forum: Fixing WordPress
In reply to: Undocumented “feature” work-around?has this problem been solved? could someone please let me know?
I am having problems getting my comments to display on permalinked pages as well.
-Neil Chatani
https://www.neilchatani.comForum: Your WordPress
In reply to: good idea? using php includesi would appreciate that very much.
Forum: Your WordPress
In reply to: good idea? using php includesyea that is what i was takling about the php include. the main page is totally different design then the weblog page. the weblog is no hassle but the main page presents a LOT more information then i want to display on the weblog page.
so do you see what i’m talking about though about comments not showing up on the permalink page? if you go to that page and then click on a date on the left side to load all the posts for that date, you will notice that the comments appear, but not if you click on the permalinks? i’m stumped.