jonimueller
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Change theme coloredit style.css in the theme template section.
Forum: Fixing WordPress
In reply to: Code to display posts by category?This may be six of one, half a dozen of the other, but here’s how I did it. You can see it (Tech Tips), here: http://www.znzx.com
You’ll need to grab your category ID (I inserted the value X), and you can tell it how many posts you want it to display (value Y). Change up the heading from techtips to whatever your category is.
<li id="techtips"><h3>Tech Tips</h3> <ul> <?php global $post; $myposts = get_posts('numberposts=Y&offset=1&category=X'); foreach($myposts as $post) : ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> </ul>Forum: Themes and Templates
In reply to: Easy way to edit themes for non codersThis might be overkill, but I thought I’d try playing around with it.
http://freshpursuits.com/canvas/Forum: Installing WordPress
In reply to: Install/config must have gone wrongThis happens to me all the time, so I have to throw it out as a solution. When you created a new database for WordPress, and a new user, did you remember to assign the user to the database? I swear, I run off and forget that one little detail all the time. 😉
Forum: Fixing WordPress
In reply to: Why do I get dashboard after login?Change the login link.
Forum: Fixing WordPress
In reply to: Help I was able to upload pictures until recently.Agreed. And unless your web host is doing something behind the scenes, there was probably something you did (install a new plugin, tweak a theme) that caused the upload feature to work “until now.”
The more details the better. I left my crystal ball at home today, sorry. (And Whoo won’t let me borrow hers!)
Forum: Themes and Templates
In reply to: Rhea 1.0 Theme right side bar!First of all you shouldn’t be inviting total strangers to enter the back end of your WP blog. Better to invite emails and get a feel for the person first. Plus, more than one person in there at a time, even if they’re good guys, they’ll be stepping all over each other trying to fix what’s wrong. That’s nothing but chaos and pandemonium.
Forum: Themes and Templates
In reply to: bottom border for each instance of php the_dateFirst of all, in your template, take the style out (stuff between brackets below); it’s redundant, as it’s already in your stylesheet. 😉
<p class="postdate"[ style="text-align: right;"]>Try this instead; I posted The Loop code so you could be sure you had the date call in the right place.
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php the_date('','<p class=\"postdate\">',' '); ?>That puts the date code at the top of the day’s posts. But it’s not a wrapper so it won’t insert your border at the end of that day’s posts. You should create a wrapper division or move the “post” division up in front of the date code (after The Loop and before the date code I posted). Make it a class, not an ID, in case you have several days’ worth of posts. Then style it with a bottom border and some bottom margin and padding.
Forum: Requests and Feedback
In reply to: Storing the informations about users moves ?Amazon does that, as does Google Adwords. And to tell you the truth, it’s kind of creepy. I’m a hands-on control freak. I dislike Big Brother following me around, solicitous and helpful tho he may be. If I want something on your site, and you provide me with links or a search box (preferably both), don’t worry, I’ll find it.
I don’t think what you are looking for is going to be able to be handled with a plugin, but I could be wrong. Maybe someone else will come along and weigh in on that.
Forum: Fixing WordPress
In reply to: Plug in for “Home Page” that STICKSWhat version of WP are you running? If you are using anything other than 2.0.11 or 2.5.1, UPGRADE immediately. With 2.5.x, you have the option of creating a page (you can call it “Home”) and telling WP to use that as your site’s front page, rather than the page that contains your posts.
Forum: Everything else WordPress
In reply to: WordPress as a CMS ExamplesI may right about it
.. the English major in me cringes. And whatever happened to doing your own homework. If I’m gonna do your legwork for you, I’m gonna want a byline. 😉
Forum: Themes and Templates
In reply to: mmmm … i want to upload a theme …You are using WordPress.com This forum is for standalone, self-hosted versions of WP. Wrong forum, sorry.
Forum: Themes and Templates
In reply to: mmmm … i want to upload a theme …Check your web host account for login to your web hosting management console. If they use cPanel, it’s there. Do you even have WP installed at this point? And if so, how?
Forum: Fixing WordPress
In reply to: Newbie QuestionThen you should create a custom category template. You can read abou that here:
http://codex.wordpress.org/Category_TemplatesThe trick is to get it where the pages appear in the page listings. A friend of mine posted a neat trick to get an outside URL onto your Page Nav. But you could just as easily link it to your custom category page if you wanted to:
http://www.ivovic.net/2008/05/20/turn-a-wordpress-page-into-a-linkSo once you have your category template created, and for example, if the category is called downloads, then if you have permalinks turned on, your site URL for the downloads category would be:
http://mycoolsite.com/category/downloads/Your page would be called downloads and that’s what would appear in the Page Nav. But when it’s clicked on, it takes you to the category template page. Make sense?
Once all that is set up, all you ever need do is post to your downloads category and WP will take care of the rest. Hope this helps you to achieve what you want.
Forum: Fixing WordPress
In reply to: Dynamic Sidebar formattingAh. {{smacks forehead}} I didn’t know that! My web design partner is European and I’ve gotten used to some phrases, such as “WC” and “full stop” … so I learned a new one. Good luck with your business. Cute site!