jkovis
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: A way to have latest post display full post and others an excerpt?I haven’t tested this code out much, but it should work:
<?php $counter = 1; ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php if($counter == 1) : ?> <!-- display post data here (using the_content) through xhtml and template tags --> <?php else : ?> <!-- display post data here (using the_excerpt) through xhtml and template tags --> <?php endif; ?> <?php $counter++; ?> <?php endwhile; endif; ?>Forum: Fixing WordPress
In reply to: Media Library won’t upload imagesI just remembered reading this sticky post yesterday. I’d make sure you check #4 and #6.
3. Update your Adobe Flash to the latest version (esp you Linux users!). NOTE: If you update to Flash 10, then you must be running WordPress 2.7 or above. The new Flash version 10 is incompatible with older versions of WordPress.
6. mod_security might be causing problems. Disable it to see if that is the problem. To do this, make an .htaccess file in your wp-admin directory. Add this to it:
<IfModule mod_security.c> SecFilterEngine Off SecFilterScanPOST Off </IfModule>Forum: Themes and Templates
In reply to: Adding Third Colum to Sliding Doors Themeok, good luck. Can you make this thread as resolved?
Forum: Themes and Templates
In reply to: Problem with sidebar and main contentTry adding this code to your sidebar.php file before $count=0;
// hold the current query results in a temp variable $temp_query = $wp_query;and this code
<?php global $temp_query; // now back to our regularly scheduled programming $wp_query = $temp_query; ?>after:
<?php get_a_post(29); ?> <h2><?php the_title(); ?></h2> <?php the_content(); ?>Forum: Fixing WordPress
In reply to: Contact Page Won’t SendIt looks like the theme powers the contact page…I’d try the ithemes support forum.
Forum: Themes and Templates
In reply to: Problem with sidebar and main contentThe only unusual part I could see was:
<?php get_a_post(25); ?> <h2><?php the_title(); ?></h2> <?php the_content(); ?> <?php get_a_post(29); ?> <h2><?php the_title(); ?></h2> <?php the_content(); ?>Is get_a_post() a function that you created?
For those two queries I’d use WP_Query() instead. It’s explained better under “Multiple Loops in Action“.
Forum: Themes and Templates
In reply to: Adding Third Colum to Sliding Doors Themei need to get similar colors and the three column appearanceUse the Firebug plugin for Firefox to examine the Memphis site’s XHTML structure and CSS properties.
Then start copying and pasting styles into the theme’s style.css and page template files until you get the look you want.
Forum: Themes and Templates
In reply to: Magazeen Theme – How To Customize Logo?I'm trying to change the logoHow do you want to change the logo? Are you just trying to change the images and colors?
Forum: Fixing WordPress
In reply to: Default 404 errorsWhen viewing your site I’m getting PHP syntax errors in your single.php and page.php
Parse error: syntax error, unexpected $end in /wp-content/themes/dsterlin/single.php on line 40 Parse error: syntax error, unexpected $end in /wp-content/themes/dsterlin/page.php on line 22Forum: Fixing WordPress
In reply to: Contact Page Won’t SendHas anyone had a problem with the contact page template in WPAre you using a plugin to manage the contact form? If so, which one?
Forum: Fixing WordPress
In reply to: Media Library won’t upload imagesA couple ideas:
– Browse your site’s directories via FTP and see if the images are actually being uploaded or not
– Ask your hosting provider to send your site’s error logs to you
– Backup your database and uploads directory (it might be easiest to do a clean install)Whenever I try to upload an image into my media library, it comes up blank and the file has seemed to upload– Take a screenshot of this and upload it so we can better see what’s happening
Forum: Everything else WordPress
In reply to: Who marks threads here as [resolved]?Topics in the Miscellaneous and Your WordPress forums are NOT afforded the opportunity to mark Resolved.ah…that’s why I wasn’t seeing the drop down for this thread. Thank you for the good information Ipstenu and MichaelH
Forum: Fixing WordPress
In reply to: rss being validated as htmlSo all I can assume is it isn't properly deactivating the cache. Here's a screen shot I took of the wp-supercache, do you see anything that should allow the rss feed to recache?That looks right to me.
Are you using any plugins that redirect or alter your feeds?
For example, I tried to validate one of your post feeds (http://www.blogsmonroe.com/backyard/?feed=rss2&p=1516) and it shows the same error message as your blog’s feed (http://www.blogsmonroe.com/backyard/?feed=rss2). I then tried to subscribe via Google Reader to the post feed and instead the blog’s feed was subscribed to.
Forum: Fixing WordPress
In reply to: Icons DisappearingFor some reason all those images point to https://php.radford.edu/~mbagrad/wordpress/wp-content/plugins/events-calendar/images/loading.gif
Can you try disabling the events calendar plugin and see if the images return?
It looks like you have other problems besides the images being gone. For example, your About page throws a 404 which shouldn’t have anything to do with the plugin.
Make sure you have your permalinks setup as they were before (/wp-admin/options-permalink.php)