Chris_K
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: PostNope. All your posts/pages/meta are in stored in that MySQL database you created as part of the installation. 🙂
What specifically are you looking for help with?
Forum: Requests and Feedback
In reply to: [REQUEST] Basic Plugin/Theme Search EnhancementsYou might have a look (and weigh in) at this sticky thread: Potential WordPress.org Improvement Projects
Forum: Fixing WordPress
In reply to: Weird double underline issueLouisiana News and Blog are both in spans with class of “titleCatName”.
However, Blogspot is an a tag soup collection of H3, span and cufon thingy. They’re definitely not all the same.If you like the other two then you probably want to adjust your theme to make it like them.
Forum: Your WordPress
In reply to: My website, open to comments, I'm new at this.(psst – link to your site?)
Forum: Fixing WordPress
In reply to: Changed Permalinks, everything works but my pictures :(Be sure to look over the various trouble-shooting tips at the Permalinks page in the Docs section. For instance, when you change from Default does your .htaccess file get updated?
Forum: Fixing WordPress
In reply to: Page OrderYes — and it tends to be theme dependent. Assuming you’re not running a 3.0 friendly theme… Check your theme’s header.php file for wp_list_pages().
Sort options: http://codex.wordpress.org/Function_Reference/wp_list_pages#List_Pages_by_Page_Order
If you are running a 3.0 friendly theme then you can use the custom menu editor instead. More on that here: http://codex.wordpress.org/Appearance_Menus_SubPanel (includes tips for converting/updating your theme)
Forum: Fixing WordPress
In reply to: How do I set my blog to root?@mckinney – no, that’s not all necessary (follow the link to “Giving WP its own directory”)
@lithium13 – I’m not sure where you copied the index.php file to, but it isn’t in the root directory. If I try to go to http://zvonce.tk/index.php I get a 404 error. Same as if I try to go to http://zvonce.tk/nosuchfile.php
If it IS there then make sure it is readable by the webserver.
Forum: Fixing WordPress
In reply to: How do I set my blog to root?Read the link from xmleads again. Skip step 1 as you already have WordPress uploaded and in its own directory — no need to move them anywhere.
If you really feel the need to move things you could certainly go with an approach found at Moving_WordPress. A bit more “brute force” but certainly an option.
Forum: Installing WordPress
In reply to: How do I install WordPress?As ClaytonJames linked earlier in this thread, do they meet the Minimum Requirements?
Forum: Fixing WordPress
In reply to: Can I use the wp My_Sql db with other vendor forms?I say “I dunno what a drip campaign is.” 🙂
Seems like a question more for the forms folks though. The good news is that your MySQL db need not be for sole use by WordPress so there’s no real reason (that I can think of) that they couldn’t use a table in there.
Forum: Fixing WordPress
In reply to: Can someone PLEASE verify this htacess write for me?The site currently doesn’t have an .htaccess file? That would imply that your Permalinks are still at the default (you can check that at Settings -> Permalinks) or you are on a Windows Server.
If your Permalinks settings are really at Default then there are big chunks of your example file that you don’t want. However, if you change to non-default permalinks then you’ll get an .htaccess file created.
If you’re on a Windows server the odds are good that the file won’t be used…
Which is really just a long way to say we need more info 🙂
Forum: Fixing WordPress
In reply to: Want Post Excerpts* on Archive and Search Result Pagesapologies. I’ve been mixing up archives and archive for a few years now 🙂
Forum: Fixing WordPress
In reply to: Want Post Excerpts* on Archive and Search Result PagesCopy index.php to archives.php and search.php.
In each of the new files, replace
<?php the_content('Continue Reading »'); ?>
with
<?php the_excerpt(); ?>More at http://codex.wordpress.org/Function_Reference/the_excerpt
Forum: Fixing WordPress
In reply to: Hide a PageIf I’m looking at this right, it looks like your theme uses wp_css_dropdownmenu() plugin to do the top menu.
My understanding is that the plugin has an Options or Settings page from which you can manage and exclude pages. Do you see anything like that under Tools or Settings?
Forum: Fixing WordPress
In reply to: Transfering WordPressCheck out some of the options at Moving_WordPress in the Docs section.