David Calhoun
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change Permalinks?By selecting that option, pages should become: site.com/page-name
Forum: Fixing WordPress
In reply to: remove widgets from my homepageYou would have to edit the theme file that calls in the sidebars. You would need to put in a conditional statement checking to see if the current page is the front page.
<?php if ( !is_front_page() ) { // display my sidebar } ?>For reference: http://codex.wordpress.org/Conditional_Tags#The_Front_Page
Forum: Fixing WordPress
In reply to: Change Permalinks?Rather than creating a custom permalink structure, just select another one of the available defaults (try “Month and name”). It should auto-create the “pretty” URL’s you desire for your pages.
Forum: Fixing WordPress
In reply to: Error Message WP 3.1The themes are contained in a folder found in the wp-content/themes/ directory of your WordPress install. You can always copy the theme folders there to another location on your computer to “back those up”.
Copying just the CSS probably won’t do you much. In order to have your site “look the same,” you’ll have to have the entire theme installed and activated. Which as you say now causes errors.
If you just want to revert to another theme that was working, just re-activate that theme. That’s all that should be required.
Forum: Fixing WordPress
In reply to: Jquery tabs problemForum: Fixing WordPress
In reply to: Error Message WP 3.1Seems like you are using an outdated plugin or theme. Try deactivating plugins or activating a stable theme (TwentyTen) and see if the issue resolves itself.
Forum: Fixing WordPress
In reply to: Can you uninstall 3.1 update?No, but you can manually re-install a lower version of WordPress. You can download many of the previous releases here: http://wordpress.org/download/release-archive/
Forum: Fixing WordPress
In reply to: Using conditional tags to vary loop in sidebar?You are trying to “open” a PHP block ( i.e. – using the “<?php” delimiter ) when you are already inside inside of a PHP block. Do you what you are doing, but inside of this instead:
<?php if ( is_page('basketball') ) { ?> [basketball loop] <?php } elseif ( is_page('football') ) { ?> [football loop] <?php } elseif ( is_page('baseball') ) { ?> [baseball loop] <?php } else { ?> [generic loop] <?php } ?>Replace the bracketed words (including the brackets) with each of your loops. If you notice, this time I am closing PHP prior to the loop section and the re-opening it after the loop section.
Forum: Fixing WordPress
In reply to: get_posts date not workingIt might be your use of
the_date()rather thanthe_time(). Either way, try something like this: http://wordpress.pastebin.com/xK5eE7QiForum: Fixing WordPress
In reply to: Code tag not working?When you say “code tag”, are you referring to this?
Forum: Fixing WordPress
In reply to: Centering GalleryForum: Fixing WordPress
In reply to: Unable to add image to pageHave you tried disabling all of your plugins and/or activating a stable theme (TwentyTen)?
Forum: Fixing WordPress
In reply to: importing not bringing in imagesI don’t believe WordPress’ export tool moves image files. It merely creates an XML file of your content. You will need to copy the uploads directory from your old site to your new one. Everything should link up then.
Forum: Fixing WordPress
In reply to: How to relink missing images and page links?Here’s a great tutorial by Bill Erickson on how to move your WordPress site. In order to fix the broken links, you will need to run some queries on your database replacing your old site address with your new one.
http://www.billerickson.net/how-to-move-your-wordpress-website/
Forum: Fixing WordPress
In reply to: Centering GalleryIf your gallery has a set width, you could center it by adding some simple CSS to your theme’s style.css file.
.my_gallery_class { margin: 0 auto; width: 500px /* you could change this to whatever you needed */; }Also, .my_gallery_class would be whatever class or id that wraps your gallery. It won’t be “my_gallery_class”.