Doraemon
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: XML broken…?Forum: Fixing WordPress
In reply to: XML broken…?Thanks, I’ll give that a shot. 😉
Forum: Fixing WordPress
In reply to: php dateThis isn’t relevant to your question unfortunately, though I think you could just get in the functions files and add a pagebreak. Simple enough? But I have a question myself regarding the date function. If there a way to show the date on every post, rather than only once for each day. For example, I could make three posts today and WP will only show the date once. I need to show the date on every single post I make. Thanks a bunch, I really appreciate the help I’ve had on these boards, invaluable,
MaxForum: Fixing WordPress
In reply to: Help, open posting to one category?Anyone? Been waiting over 16 hours for a reply. 😉
Forum: Fixing WordPress
In reply to: HELP! Sub-sub categories not showing!Thanks Mark, sorry for a late reply, it’s been crazy… I tried this out and I get a parse error.. Something I’m doing wrong? Thanks,
MaxForum: Fixing WordPress
In reply to: Looong posts not working properly…Thank you! 🙂
Forum: Fixing WordPress
In reply to: diff style on latest post, diff layout for singleInterestingly enough here’s what I did:
<?php
if ("11" == $cat) { } // If we're at the about us page, don't show comments
else if ("18" == $cat) { } // If we're at the beta page, don't show comments
else { include('comments.php'); include(ABSPATH . 'wp-comments.php'); }
?>
I had to put my feedback div in an external file and include it in this script so that it would disappear. Note, this is about the extent of my PHP knowledge, but it does work. Again, thanks for your help,
MaxForum: Fixing WordPress
In reply to: diff style on latest post, diff layout for singleInterestingly enough here’s what I did:
<?php
if ("11" == $cat) { } // If we're at the about us page, don't show comments
else if ("18" == $cat) { } // If we're at the beta page, don't show comments
else { include('comments.php'); include(ABSPATH . 'wp-comments.php'); }
?>
I had to put my feedback div in an external file and include it in this script so that it would disappear. Note, this is about the extent of my PHP knowledge, but it does work. Again, thanks for your help,
MaxForum: Fixing WordPress
In reply to: diff style on latest post, diff layout for singleCan I substitute the category id in place of the name? Such as:
<?php
if ("2" != $cat) {
include(ABSPATH . 'wp-comments.php');
}
?>Forum: Fixing WordPress
In reply to: diff style on latest post, diff layout for singleThanks a lot! I really appreciate your help, absolutely invaluable!
Forum: Fixing WordPress
In reply to: diff style on latest post, diff layout for singleThanks ElasticDog. Not exactly what I was looking for.. I should give an example. Let’s say I have my index.php and I format it and it’s all perfect for the index of my site, then I have another category which is “news” and I want to use different HTML for that page; I want to take this category and link it’s template to a different file. Maybe it’s the same template with some introductory text at the beginning which is only relevant to the news section of the site and therefore should only be displayed there. I’m new to WP and not so great with PHP, so if you guys have some ideas you might have to walk me through the process. Thanks again!
MaxForum: Fixing WordPress
In reply to: diff style on latest post, diff layout for singleCharle, could you further explain the process that would be needed to achieve these separate templates? If you could walk me through what I’d have to do to set this up that would be great. Thank you!
MaxForum: Fixing WordPress
In reply to: HELP! PHP dynamic path?Thanks so much! Exactly what I was looking for. 😀
Forum: Fixing WordPress
In reply to: Help: Category ‘Homepages’Okay, I’m rather new to this… Could you walk me through what I have to do to set this up? Thanks,
MaxForum: Fixing WordPress
In reply to: CalendarNot at this time, perhaps in the future. 🙂 Again, thanks for your help,
Max