Forum Replies Created

Viewing 14 replies - 16 through 29 (of 29 total)
  • Thread Starter zombiesundays

    (@zombiesundays)

    Last night I made the mistake of deleting the database tool, only to find the database for the site was deleted aswell. Got to love Yahoo.

    Reinstalling showed the login, but I wasn’t able to get in (even with updated user/pass). It would act like it was logging in, and instead bounce back to the login page.

    After that, I used Yahoo’s restore tool (huge pain) to restore each file of the PHPMyAdmin from a previous backup. This took a few hours and was fruitless.

    Thanks for the help. My self-proclaimed “Google guru” searches are running me in circles.

    Thanks for the code snippet eveums!

    Thread Starter zombiesundays

    (@zombiesundays)

    I was able to get around the problem I was having. Here’s the successful code if anyone is having trouble.

    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <div id="postorama"><center>
    	   <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">
                 <?php the_thumb("link=p"); ?></a>
    
              <p class="date"><a href="<?php the_permalink(); ?>">
                <b><?php the_title(); ?></a></b><br />
              <small><?php the_time('F jS, Y'); ?></small>
          </center></div>

    Goodluck!

    Thread Starter zombiesundays

    (@zombiesundays)

    Don’t I feel stupid.

    For anyone else having this problem, go to Settings>Reading and change “Blog pages show at most” to whatever number you want to cap out at.

    Thread Starter zombiesundays

    (@zombiesundays)

    Here’s my code, as you can see it doesn’t limit the posts to 10.

    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <div id="postrama"><center>
    	   <a href="<?php the_permalink() ?>" title="<?php the_title(); ?> Cell Phone Reviews">
                 <?php the_thumb("link=p"); ?></a>
    
              <p class="date"><a href="<?php the_permalink(); ?>">
                <b><?php the_title(); ?></a></b><br />
              <small><?php the_time('F jS, Y'); ?></small>
          </center></div>

    Thread Starter zombiesundays

    (@zombiesundays)

    I tried placing the loop inside of a table to constrain the width, but I’m still getting this disorganized mess.

    Why are my posts being scattered like a bag of sprinkles ontop of ice cream? I can see no reason for them to be anything but one after another.

    I had the same issue with Yahoo hosting. Their solution was to keep it in the blog folder.

    There’s always the option of reinstalling at your root directory instead of a subfolder (/blog). That’s the most basic way to get it taken care of.

    Thread Starter zombiesundays

    (@zombiesundays)

    Turns out the loop is more powerful than I had thought.

    For anyone still having trouble I used Post Thumb Revisited and simply called in the thumbnails for each post.

    Now I just need to figure out CSSing this mess.

    Thread Starter zombiesundays

    (@zombiesundays)

    My posts coming in are oddly misaligned. I’m not sure if it’s the Post Thumbs Revisited plugin, varied sized thumbnails, my poor CSS, or what but each of my thumbnails in the first row descend instead of sit across.

    Is there a CSS tag I can use to align them, or is there something I’m doin wrong?

    Thread Starter zombiesundays

    (@zombiesundays)

    That code is in my category-# (# of category) to force a custom template for it.

    Included in it is WordPress’ info-tags, made it easier for me to figure this thing out.

    Thread Starter zombiesundays

    (@zombiesundays)

    I was able to figure the loop out (at long last!)

    However I’m now just having difficulties with formatting. I need to format the following output into rows of 4 columned:

    `<?php } else { ?>
    <div class=”post”>
    <?php } ?>
    <!– Display the Title as a link to the Post’s permalink. –>

    </h2>

    <div class=”post” id=”post”>
    <?php the_thumb(); ?>
    <h2>“>
    <?php the_title(); ?>
    </h2>
    <!– Display the Time. –>
    <small>
    <?php the_time(‘F jS, Y’); ?>
    </small></div>
    <!– Stop The Loop (but note the “else:” – see next line). –>
    <?php endwhile; else: ?>`

    I understand I can just throw a div tag on it, but what kind of css would allow me to format the pictures and text appropriatly?

    Thanks!

    Thread Starter zombiesundays

    (@zombiesundays)

    Here’s what I’ve got so far (doesn’t display, so something’s wrong)

    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
      <div class="post">
               <?php the_thumb(); ?>
               <br />
    			<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
               <br />
    		    <small><?php the_time('F, Y'); ?></small>
       </div>
      <!--post #end -->
             <?php endwhile; ?>

    That bit “the_thumb()” is Alakhar’s Post Revisited. I upload an image for each post in each category. I want the category view to show the thumbnail, permalink below that, and then the date below that of the post.

    Thanks!

    Forum: Plugins
    In reply to: IMM GLOSSARY Alphabetized

    I’ve used both plug-ins and have been trying to accomplish an alphabetized IMM Glossary as well.

    The problem was that IMM doesn’t have the alphabet, but WP-Snap doesn’t link the terms throughout the site.

    I didn’t think to incorporate the two together. Have any luck recently?

    Thread Starter zombiesundays

    (@zombiesundays)

    This seems so simple I’m amazed at how much difficulty I’m having.

    I’ve resorted to making a doorway page for each manually with html. This is a strenuous alternative and I’m still looking for a way to automate this.

    Thanks!

Viewing 14 replies - 16 through 29 (of 29 total)