Forum Replies Created

Viewing 11 replies - 1 through 11 (of 11 total)
  • Ditto. It attempts to log me in to WordPress.com and fails, so instead of stats I have a wordpress log in page. It took me a couple minutes to figure out I was actually still logged into the dashboard of my own site.

    Thread Starter Ibis3

    (@ibis3)

    Thanks, esmi. I did try all of your suggestions previously. rfair’s suggestion hit on the problem. Looks to be fixed now. Thanks so much.

    Now all I need to do is solve my sidebar style issues… πŸ™‚

    Forum: Fixing WordPress
    In reply to: Tag Cloud problems
    Thread Starter Ibis3

    (@ibis3)

    Thanks for the suggestion. I just tried it & I can’t edit or drag widgets when the Default theme is activated either.

    I’m not sure if my current theme is compatible. This widget issue seems to be the only glitch. I haven’t updated all of my plugins yet. I’m going to try that next & see what happens. I can’t go back to my old version of WP because the server is running an updated version of PHP that the old WP didn’t like.

    Forum: Fixing WordPress
    In reply to: Tag Cloud problems
    Thread Starter Ibis3

    (@ibis3)

    I can’t edit or drag my widgets. They’re frozen as is (I can’t even see the settings only that they are there).

    Thread Starter Ibis3

    (@ibis3)

    For the secondary problem, I now seem to recall making changes manually to the PHP to get it to look how I wanted it to, so I’m going to see if I can track down where I might have done that, but the main problem still exists. Thanks for any assistance.

    Thread Starter Ibis3

    (@ibis3)

    The boss changed her mind, so now the goal is to leave the home page as is and show the two most recent posts displaying in full on the blog page. I created a separate page template (bloghome.php) and a new page called ‘blog’ with no content and assigned that as the “posts page” in the admin dashboard. Two problems:

    1. It’s not showing only 2 posts though I’ve put in a query_posts tag
    2. I’m not sure if there’s a way to show complete posts since the (current) posts contain ‘more’ tags. (This was done for the sake of the category pages.)

    This is the relevant part of the code of the bloghome.php template:

    <?php
    /*
    Template Name: Bloghome
    */
    ?>
    <?php get_header();
      ?>
    
    <div class="narrowcolumn">
    
    	<?php include(TEMPLATEPATH . '/top-menu.php'); ?>
    
    <?php query_posts('showposts=2'); ?>
    	<?php if (have_posts()) : ?>
    
    		while (have_posts()) : the_post(); ?>
    
    	<div class="post" id="post-<?php the_ID(); ?>">
    
    		<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
    		<div class="entry">
    
    			<?php the_content(); ?>
    			<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
    
    			<?php the_category(', ') ?> <?php edit_post_link('Edit', '<p>', '</p>'); ?>
    
    			<!--
    			<?php trackback_rdf(); ?>
    			-->
    
    			<div class="comments-template">
    				<?php comments_template(); ?>
    			</div>
    
    		</div>
    	</div>
    
    	<?php endwhile; ?>

    What am I doing wrong?

    Thread Starter Ibis3

    (@ibis3)

    Forgive me for being a bit dense, but:

    So do I put the whole Loop in again with this tag before it, or just this tag following the Loop that’s already there?

    Thread Starter Ibis3

    (@ibis3)

    Excellent!!! It all works now. Thanks again so much.

    Thread Starter Ibis3

    (@ibis3)

    Great, thanks! I’d put the empty space divider in to see if that would solve the problem but it didn’t. Strange that the archives and links (and the default categories widget) looked ok when there was just the one NAVT list. The only difference I can see is the nested list (i.e. parent/child) issue. Probably once that’s been fixed everything should fall into place.

    I just want to tell you how wonderful this plugin is. Fantastic! I’m loading it on all my blogs from now on (assuming this little bug is fixed).

    Thread Starter Ibis3

    (@ibis3)

    Thanks. That worked. The widget just didn’t do what I wanted it to. Ah well, back to the drawing board.

    Thread Starter Ibis3

    (@ibis3)

    Thank you for that. I guess it shows how new I am to all the features of WP. The other admin of the blog had changed the Permalink options, but didn’t create an .htaccess file.

Viewing 11 replies - 1 through 11 (of 11 total)