Title: ghansen's Replies | WordPress.org

---

# ghansen

  [  ](https://wordpress.org/support/users/ghansen/)

 *   [Profile](https://wordpress.org/support/users/ghansen/)
 *   [Topics Started](https://wordpress.org/support/users/ghansen/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ghansen/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ghansen/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ghansen/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ghansen/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ghansen/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 19 total)

1 [2](https://wordpress.org/support/users/ghansen/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/ghansen/replies/page/2/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Older Entries / Newer Entries links not working properly](https://wordpress.org/support/topic/older-entries-newer-entries-links-not-working-properly/)
 *  Thread Starter [ghansen](https://wordpress.org/support/users/ghansen/)
 * (@ghansen)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/older-entries-newer-entries-links-not-working-properly/#post-2225556)
 * OY!!! Now why the heck would someone program a page like that? Ug. OK… I’ll have
   to rethink this now.
 * Thanks.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Older Entries / Newer Entries links not working properly](https://wordpress.org/support/topic/older-entries-newer-entries-links-not-working-properly/)
 *  Thread Starter [ghansen](https://wordpress.org/support/users/ghansen/)
 * (@ghansen)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/older-entries-newer-entries-links-not-working-properly/#post-2225537)
 * Ah, gotcha… here’s the pastebin link:
    [http://pastebin.com/6dubezdF](http://pastebin.com/6dubezdF)
 * I’m looking for something custom, but probably wouldn’t know if it I aw it.
 * Was also looking for posts per page as I want to up the amount, but I don’t see
   that either.
 * Thanks!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Older Entries / Newer Entries links not working properly](https://wordpress.org/support/topic/older-entries-newer-entries-links-not-working-properly/)
 *  Thread Starter [ghansen](https://wordpress.org/support/users/ghansen/)
 * (@ghansen)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/older-entries-newer-entries-links-not-working-properly/#post-2225524)
 * Hi alchymyth,
    I had posted the entire code for the index.php but I see it’s 
   been moderated. I just posted something to pastebin, but I have to see how exactly
   to get you to see it.
 * The website is [http://georginesaves.com](http://georginesaves.com)
 * Some solutions I tried were (and I’m going on memory here) making posts singular
   in next_post_link, and having a hard time remembering the others. I’ll see if
   I can retrace my steps!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Links not active under recent posts – help](https://wordpress.org/support/topic/links-not-active-under-recent-posts-help/)
 *  Thread Starter [ghansen](https://wordpress.org/support/users/ghansen/)
 * (@ghansen)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/links-not-active-under-recent-posts-help/#post-2223671)
 * D’oh! I looks like my “older entries” link at the end of recent posts isn’t working
   now… could this be related to the fix we just made? I’m pretty sure I had it 
   working before.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Links not active under recent posts – help](https://wordpress.org/support/topic/links-not-active-under-recent-posts-help/)
 *  Thread Starter [ghansen](https://wordpress.org/support/users/ghansen/)
 * (@ghansen)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/links-not-active-under-recent-posts-help/#post-2223568)
 * Woo-hoo! At first I didn’t think it worked because the links weren’t styled, 
   but I saw it in the code and was able to update the CSS. PLUS the thumbnails 
   now show up.
 * Thanks you SO MUCH for your help!!!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Links not active under recent posts – help](https://wordpress.org/support/topic/links-not-active-under-recent-posts-help/)
 *  Thread Starter [ghansen](https://wordpress.org/support/users/ghansen/)
 * (@ghansen)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/links-not-active-under-recent-posts-help/#post-2223531)
 * Interestingly enough, my index.php file doesn’t have the_excerpt() or the_content().
   This is what I see for the posts, any thoughts?:
 *     ```
       <?php $i=0; while (have_posts()) : the_post(); $i++; ?>
       					<div class="irecent_post" id="irecent_post-<?php the_ID(); ?>">
       						<div class="irecent_post_title">
       							<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php if ( function_exists('the_title_attribute')) the_title_attribute(); else the_title(); ?>"><?php the_title(); ?></a></h3>
       							<div class="info">Posted by <b class="author"><?php the_author() ?></b> at <?php the_time() ?> on <?php the_time('F d Y') ?></div>
       							<?php if(function_exists('the_ratings')) { ?><div class="rate"><?php the_ratings();?></div><?php } ?>
       						</div>
   
       						<div class="irecent_post_entry">
       							<?php
       									$thumbnail = get_post_meta($id, 'image_100_100', true);
   
       									if( isset($thumbnail) && !empty($thumbnail) ):
       										?><img src="<?php echo $thumbnail; ?>" alt="<?php echo $post_title; ?>" /><?
       									endif;
       									the_content_limit($recents_posts_char_limit, '');
       							?>
       						</div>
       					</div>
       					<?php
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Links not active under recent posts – help](https://wordpress.org/support/topic/links-not-active-under-recent-posts-help/)
 *  Thread Starter [ghansen](https://wordpress.org/support/users/ghansen/)
 * (@ghansen)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/links-not-active-under-recent-posts-help/#post-2223271)
 * Thanks! You rule… I’m rather savvy with HTML/CSS (not so much PHP/JS etc.) so
   I’m hoping I won’t have an issue controlling layout. I will work on this later
   this morning and let you know how it goes.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Links not active under recent posts – help](https://wordpress.org/support/topic/links-not-active-under-recent-posts-help/)
 *  Thread Starter [ghansen](https://wordpress.org/support/users/ghansen/)
 * (@ghansen)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/links-not-active-under-recent-posts-help/#post-2223264)
 * Thanks esmi. This is something I’d like to add as well, and will take a stab 
   at it! But if anyone out there has a solution for the links, LMK 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AnythingSlider for WordPress] Instructions for this plugin](https://wordpress.org/support/topic/instructions-for-this-plugin/)
 *  [ghansen](https://wordpress.org/support/users/ghansen/)
 * (@ghansen)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/instructions-for-this-plugin/page/2/#post-2195767)
 * Thanks! I’ll send you an email with some info…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AnythingSlider for WordPress] Instructions for this plugin](https://wordpress.org/support/topic/instructions-for-this-plugin/)
 *  [ghansen](https://wordpress.org/support/users/ghansen/)
 * (@ghansen)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/instructions-for-this-plugin/page/2/#post-2195758)
 * And the nav buttons when they appear on hover don’t work… I have them selected
   as Yes in both Appearance and Function settings. I appreciate all your help and
   will definitely donate to your plugin!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AnythingSlider for WordPress] Instructions for this plugin](https://wordpress.org/support/topic/instructions-for-this-plugin/)
 *  [ghansen](https://wordpress.org/support/users/ghansen/)
 * (@ghansen)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/instructions-for-this-plugin/page/2/#post-2195757)
 * Damn! I had it all perfect, went into the plugin settings to suppress the panel
   navigation below the slide, and now all the inline width styles are back … and
   back wider! I reinserted the slide and manually put in 400 x 300, which is showing
   up in the shortcode, but look at all the inline widths that I can’t edit. Any
   ideas?
 * <div class=”anythingSlider anythingSlider-default” style=”width: 615px; height:
   312px;”>
    <div class=”anythingWindow”> <ul class=”anythingSlider anythingBase”
   id=”slider-224″ style=”width: 1845px; left: 0px;”> <li class=”panel activePage”
   style=”width: 615px; height: 312px;”> <div class=”content clearfix”> <img height
   =”232″ width=”300″ title=”Palisades Park Fitness Factory” alt=”Palisades Park
   Fitness Factory” src=”[http://bigideasolutions.com/fitnessfactory/wp-content/uploads/2011/07/Exterior-Pal-Park-FF1.jpg”&gt](http://bigideasolutions.com/fitnessfactory/wp-content/uploads/2011/07/Exterior-Pal-Park-FF1.jpg”&gt);
   </div>
 *  <li class=”panel” style=”width: 615px; height: 323px;”>
    <div class=”content
   clearfix”> <img height=”243″ width=”300″ title=”Friends training preacher curls”
   alt=”Friends training preacher curls” src=”[http://bigideasolutions.com/fitnessfactory/wp-content/uploads/2011/07/Friends-training-preacher-curls.jpg”&gt](http://bigideasolutions.com/fitnessfactory/wp-content/uploads/2011/07/Friends-training-preacher-curls.jpg”&gt);
   </div>
 *  <li class=”panel” style=”width: 615px; height: 310px;”>
    <div class=”content
   clearfix”> <img height=”230″ width=”300″ title=”Ab Chair” alt=”Ab Chair” src=”
   [http://bigideasolutions.com/fitnessfactory/wp-content/uploads/2011/07/male-teen-doing-ab-chair1.jpg”&gt](http://bigideasolutions.com/fitnessfactory/wp-content/uploads/2011/07/male-teen-doing-ab-chair1.jpg”&gt);
   </div>
 *  </div>
    <div class=”anythingControls” style=”display: block;”> <ul class=”thumbNav”
   >
 *  </div>
    <span class=”arrow forward”>[<span></span>](https://wordpress.org/support/users/ghansen/replies/?output_format=md#)
   </span><span class=”arrow back”>[<span></span>](https://wordpress.org/support/users/ghansen/replies/?output_format=md#)
   </span></div>
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AnythingSlider for WordPress] Instructions for this plugin](https://wordpress.org/support/topic/instructions-for-this-plugin/)
 *  [ghansen](https://wordpress.org/support/users/ghansen/)
 * (@ghansen)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/instructions-for-this-plugin/page/2/#post-2195754)
 * OK, I think that did the trick!
    [http://bigideasolutions.com/fitnessfactory/the-club/palisades-park/gallery/](http://bigideasolutions.com/fitnessfactory/the-club/palisades-park/gallery/)
 * Now I just have to find the proper sizing to make sure the slides tile evenly…
   unless you know of a better way?
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AnythingSlider for WordPress] Instructions for this plugin](https://wordpress.org/support/topic/instructions-for-this-plugin/)
 *  [ghansen](https://wordpress.org/support/users/ghansen/)
 * (@ghansen)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/instructions-for-this-plugin/#post-2195752)
 * Hmm… I’m using 0.6.3 … let me look to upgrade! But yes, I did set the width in
   the attributes when inserting the slideshow.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AnythingSlider for WordPress] Instructions for this plugin](https://wordpress.org/support/topic/instructions-for-this-plugin/)
 *  [ghansen](https://wordpress.org/support/users/ghansen/)
 * (@ghansen)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/instructions-for-this-plugin/#post-2195749)
 * We’re getting there!! How do I change the overall width of the slideshow? It’s
   putting in an inline style for width that is too wide. I’ve gone into the plugin
   settings and changed it to 300×300, but it’s still putting in the 547px width
   as an inline style which I can’t get rid of.
 * Once there I think I can fix the alignment. Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AnythingSlider for WordPress] Instructions for this plugin](https://wordpress.org/support/topic/instructions-for-this-plugin/)
 *  [ghansen](https://wordpress.org/support/users/ghansen/)
 * (@ghansen)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/instructions-for-this-plugin/#post-2195745)
 * Jacob,
    OK, I found the videos and followed the directions and successfully added
   3 slides. However, when I insert the slide, it doesn’t work. As an FYI, I put
   all three slides in the same category, assuming the slideshow would only display
   these 3 images and no others (my plan is to add other categories).
 * This is the dev URL:
    [http://bigideasolutions.com/fitnessfactory/the-club/palisades-park/gallery/](http://bigideasolutions.com/fitnessfactory/the-club/palisades-park/gallery/)
 * I’ll watch the video for sizing the actual slideshow, but I want to get the slideshow
   working first 🙂
 * Also, if I want to add captions, do I just add text to the actual slide page?
   When I put in actual captions in the image properties, it came out messed up.
   Of course, if I can’t, no biggie.
 * Thanks!

Viewing 15 replies - 1 through 15 (of 19 total)

1 [2](https://wordpress.org/support/users/ghansen/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/ghansen/replies/page/2/?output_format=md)