Michael Bishop
Forum Replies Created
-
Why would you need to do that? Template hierarchy already handles that, meaning if your theme has a template called category-shows.php, WP will automatically load that template (as of 2.9, previously you had to use the cat ID for the template name, ie category-6.php), otherwise it cascades to category.php, if no category.php, then archive.php, then last resort index.php.
Forum: Themes and Templates
In reply to: damaged themes, can I fix?Awesome, glad it all worked out. Happy holidays to you as well.
Forum: Themes and Templates
In reply to: damaged themes, can I fix?So I went ahead and cleaned up the files, and the theme is working. You can download it from here.
If you need to fix any other themes from that site, you can compare that theme’s look to what the download looks like and make similar changes.
Forum: Themes and Templates
In reply to: damaged themes, can I fix?Yep, it’s broken π
Seems they are using some kind of script to generate the zip file, and it’s including the path in the file names, so instead of style.css, it’s kitchen_chefs_cooking_bue034\style.css. ALL of the files that’s happening to, so none of them will work. That said, you should be able to manually remove the kitchen_chefs_cooking_bue034\ portion of each file and theoretically the theme should work.
Forum: Fixing WordPress
In reply to: Have tag pages show LESS of posts?If you have a tag.php template, you can edit that to use the_excerpt instead of the_content. If you don’t have a tag.php file in your theme, then you’d need to create one (possibly duplicate archive.php if you’ve got that) and then make the requisite edit.
Forum: Fixing WordPress
In reply to: 2.9 Post Tags panel does not workI haven’t experienced any issues in my brief testing of 2.9 and the tags panel on writing/editing posts. Do you possibly have a plugin that modifies the write post page or does anything with tags?
Forum: Fixing WordPress
In reply to: mySQL & WordPress 2.9You need to edit your wp-config.php file to change any db settings.
As the saying goes, there’s more than one way to skin a cat, what I’ve done in the past for the category.php template is:
<?php $myposts = 'orderby=title&order=ASC&cat=' . $cat; query_posts($myposts) ?>prior to calling the loop. The cat=’ .$cat’ was necessary as I found that without that, it would call all posts, not just those that were supposed to be in the category for that page, ie, if you clicked a link for a page of posts in “foo” category, it would show posts in ALL categories, not just for “foo”.
If it were me, I’d also create a category specific template for “shows”, rather than using the conditional tag, simply because I find it easier, and allows for even more specific structure and styling.
Forum: Themes and Templates
In reply to: damaged themes, can I fix?Where are you downloading the themes from? Do they not have a style.css file in them? If so, do they have the requisite style sheet header?
Forum: Themes and Templates
In reply to: Simple IndyLooking at the FAQ for the theme
, you need to create a category “Featured”, and add that category in addition to any categorization for any post you want to have in that section. There’s some additional information on that page regarding images and sizes for the featured section as well.Forum: Fixing WordPress
In reply to: reinstall wordpress without losing the contents of the siteIt appears you deleted the index.php file from the server. Make sure you backup your database and /wp-content, then simply overwrite the WP files on the server. If you’re not familiar with that process, follow the 3 step manual upgrade procedure section of the Upgrading WordPress documentation.
Forum: Requests and Feedback
In reply to: Will WordPress ever officially support custom content types?I thought 2.8.x had basic support for custom content types? 2.9 has extended that quite a bit, with more on the drawing board for 3.0 (according to the blog post on the 2.9 release)
Forum: Fixing WordPress
In reply to: “isn’t redirecting properly” error message – WordPress MUI’ve encountered this, but never the same solution twice. You may try the WPMU forums and searching around there. http://mu.wordpress.org/forums/
Forum: Plugins
In reply to: How Can I Remove My Nav From My Frontpage?You could wrap the menu code in a Conditional Tag in your header template to exclude it on the homepage.
Something to the effect of
<?php if (!is_front_page) { // nav code } ?>Forum: Fixing WordPress
In reply to: Sidebars not loading…….I don’t know what the Picturesurf service does, or how you are using it (I can’t even load the site currently). If you disable the plugin, does it alleviate the load times?