danoprey
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: PHP Include file based on category nameI haven’t tested it, but try:
<?php include(“https://www.website.com/”.the_category();.”.inc”); ?>
Forum: Fixing WordPress
In reply to: How to create handcoded single.phpHave you tried just copy and pasting the whole thing across, checking it works, then just evolving that in to what you want?
That’s what I did on my news site.
Forum: Your WordPress
In reply to: Help urgently required.Added you on MSN.
Forum: Your WordPress
In reply to: Re-designed: Archon DigitalVery nice, excellent job.
Forum: Your WordPress
In reply to: Indie music blog, take a lookGreat top 10 list! Got a bit distracted by that and was on youtube for a while. I guess that’s positive feedback!
Forum: Your WordPress
In reply to: InternationalGlobe.com – News site made in WordPressAw.
Forum: Your WordPress
In reply to: MakedaSite is live!Looks great, don’t know what the original theme looks like, but I will check it out.
Forum: Fixing WordPress
In reply to: Ugh. Help with import troubles please.After you exported it, open it up in Notepad and do a replace from:”MachNoneFlying” to “PPCTimes”.
Should change any links.
Hope that helps.
Forum: Your WordPress
In reply to: My WordPress SitesAli Yildiz is great, very bold and clean. You should mention if you didn’t do the themes yourself though, I got the impression you made both.
Forum: Fixing WordPress
In reply to: How to prevent ppl from seeing source code?NB: They can only see the rendered HTML or CSS, NOT your PHP code, this is rendered on your server and then sent to them.
But I’m guessing that probably wasn’t your question. Useful to know anyway.
Forum: Developing with WordPress
In reply to: Lightbox FailureI too have this problem at https://www.johnricharchitects.com. It’s not with thumbnails, but if you click the image before clicking ‘next’ or ‘previous’ then it just opens the image as with the above poster.
Anyone have any ideas?
Forum: Fixing WordPress
In reply to: How can you make post from the pastWhen you add a new post on the right above “Publish” is:
“Publish immediately Edit”Click edit, then set the date that you want it to be published.
Forum: Fixing WordPress
In reply to: Query Posts QuestionDon’t know if this is the best solution, but the obvious answer is to limit it to showing all the categories except category 3.
e.g.
<?php $recentPosts = new WP_Query(); $recentPosts->query('showposts=5&cat=1,2,4,5'); ?>
Forum: Fixing WordPress
In reply to: How do I remove …?or you can override the stylesheet for specific elements. Locate the div that you want to remove the borders for and add style=”border:none” after the id.
Forum: Fixing WordPress
In reply to: Page not found in some browsersThanks a lot for the feedback, henkholland.
I guess it’s a local issue. I had cleared my cache, but it made no difference.
I tried it on another machine and it worked for both FF and IE on there too, so guess it is just mine.
Thanks a lot for letting me know.
Dan