Title: ewergreen's Replies | WordPress.org

---

# ewergreen

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Awesome Flickr Gallery] [Plugin: Awesome Flickr Gallery] Custom Width No More Working](https://wordpress.org/support/topic/plugin-awesome-flickr-gallery-custom-width-no-more-working/)
 *  [ewergreen](https://wordpress.org/support/users/ewergreen/)
 * (@ewergreen)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-awesome-flickr-gallery-custom-width-no-more-working/#post-2743370)
 * The fix will only work with colorbox, NOT with highslide.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Awesome Flickr Gallery] [Plugin: Awesome Flickr Gallery] Custom Width No More Working](https://wordpress.org/support/topic/plugin-awesome-flickr-gallery-custom-width-no-more-working/)
 *  [ewergreen](https://wordpress.org/support/users/ewergreen/)
 * (@ewergreen)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-awesome-flickr-gallery-custom-width-no-more-working/#post-2743369)
 * Just upgraded to Version: 3.3.5 and unfortunately this broke it again. Will implement
   the fix described by Hatrezie again, but would appreciate it if either this is
   fixed in the next version OR that it will specify that it isn’t fixed yet in 
   the release notes so I will hold off on updating.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Awesome Flickr Gallery] [Plugin: Awesome Flickr Gallery] Custom Width No More Working](https://wordpress.org/support/topic/plugin-awesome-flickr-gallery-custom-width-no-more-working/)
 *  [ewergreen](https://wordpress.org/support/users/ewergreen/)
 * (@ewergreen)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-awesome-flickr-gallery-custom-width-no-more-working/#post-2743367)
 * Thanks for the temporary workaround Hatrezie. Really glad to see you’ve implemented
   this Ronak. I was one of the people who originally requested it.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Show different sidebar on taxonomy pages when a default is set](https://wordpress.org/support/topic/show-different-sidebar-on-taxonomy-pages-when-a-default-is-set/)
 *  Thread Starter [ewergreen](https://wordpress.org/support/users/ewergreen/)
 * (@ewergreen)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/show-different-sidebar-on-taxonomy-pages-when-a-default-is-set/#post-2653950)
 * Thanks stvwlf. For some reason that doesn’t work either. I’ll try tweaking it
   a bit later.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Show different sidebar on taxonomy pages when a default is set](https://wordpress.org/support/topic/show-different-sidebar-on-taxonomy-pages-when-a-default-is-set/)
 *  Thread Starter [ewergreen](https://wordpress.org/support/users/ewergreen/)
 * (@ewergreen)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/show-different-sidebar-on-taxonomy-pages-when-a-default-is-set/#post-2653885)
 * Thanks for the help stvwlf. Sorry for mentioning “category”, I did indeed mean“
   taxonomy”. Don’t know why I mixed them up.
 * I placed the code after the check to see whether it’s a page or single, and before
   the check to see if it’s “default”. Might just be as simple as putting it in 
   the wrong place, but would love to get your advice on where to put it to make
   this work as I’m unable to do so.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Wp_nav_menu(); ignores custom menu, displays posts](https://wordpress.org/support/topic/wp_nav_menu-ignores-custom-menu-displays-posts/)
 *  [ewergreen](https://wordpress.org/support/users/ewergreen/)
 * (@ewergreen)
 * [14 years, 10 months ago](https://wordpress.org/support/topic/wp_nav_menu-ignores-custom-menu-displays-posts/#post-2309444)
 * The problem you have is that you didn’t register the second menu. Go in to your
   functions.php file and look for something like the below. You’ll see that I have
   two menu’s there, which makes the whole thing work.
 *     ```
       add_theme_support( 'nav-menus' );
       	add_action( 'init', 'register_my_menus' );
       	function register_my_menus() {
       	register_nav_menus(
       	array(
       	'menu-1' => __( 'Navigation Menu' ),
       	'menu-2' => __( 'Meta navigation Menu' )
       		)
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Breaking the loop breaks dynamic sidebar ability](https://wordpress.org/support/topic/breaking-the-loop-breaks-dynamic-sidebar-ability/)
 *  Thread Starter [ewergreen](https://wordpress.org/support/users/ewergreen/)
 * (@ewergreen)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/breaking-the-loop-breaks-dynamic-sidebar-ability/#post-2308562)
 * Thank you so much alchymyth, `wp_reset_query();` fixed the problem. So stupid
   of me, sometimes you just need an extra pair of eyes – or maybe brains in this
   case… .
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Breaking the loop breaks dynamic sidebar ability](https://wordpress.org/support/topic/breaking-the-loop-breaks-dynamic-sidebar-ability/)
 *  Thread Starter [ewergreen](https://wordpress.org/support/users/ewergreen/)
 * (@ewergreen)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/breaking-the-loop-breaks-dynamic-sidebar-ability/#post-2308546)
 * Haha, don’t like tables either, however: I’m showing my page content above the
   table and the table isn’t used for layout purposes, but is used to describe a
   number of objects that have the same properties, so belongs in this grid.
 * My code is valid when using the validator. When looking at the rendered code,
   the end-tags are in place. Just fyi:
 * >  There are a number of HTML tags in HTML4 and HTML5 that do not require the
   > use of a closing tag for valid HTML. The reason that most of these tags don’t
   > have a required end tag is because in most cases, the end tag is implied by
   > the presence of another tag in the document.
 * The HTML output of the default table is displaying correctly and without problems,
   as is it displayed correctly on my site.
 * Removing all HTML code but the broken loop like below still gives me the same
   issue:
 *     ```
       <?php if (have_posts()) : ?>
            <?php while (have_posts()) : the_post(); ?>
                 <p>hi</p>
            <?php endwhile; ?>
       <p>test</p>
   
       <?php endif; ?>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Breaking the loop breaks dynamic sidebar ability](https://wordpress.org/support/topic/breaking-the-loop-breaks-dynamic-sidebar-ability/)
 *  Thread Starter [ewergreen](https://wordpress.org/support/users/ewergreen/)
 * (@ewergreen)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/breaking-the-loop-breaks-dynamic-sidebar-ability/#post-2308533)
 * The `endwhile;` is right after the part where I display the rows.
    Full code 
   can be found on pastebin: [http://pastebin.com/0GfjypiZ](http://pastebin.com/0GfjypiZ)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [adding a comments form to my posts & pages](https://wordpress.org/support/topic/adding-a-comments-form-to-my-posts-pages/)
 *  [ewergreen](https://wordpress.org/support/users/ewergreen/)
 * (@ewergreen)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/adding-a-comments-form-to-my-posts-pages/#post-2308527)
 * Add the below to your template where you want the comments to display:
    `<?php
   comments_template(); ?>`
 * I’m guessing this should go below the_content(); and:
    `<?php endwhile; else:?
   >`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Add posts to a Page](https://wordpress.org/support/topic/add-posts-to-a-page/)
 *  [ewergreen](https://wordpress.org/support/users/ewergreen/)
 * (@ewergreen)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/add-posts-to-a-page/#post-2308526)
 * It’s not entirely clear to me what you want. However, I think you are looking
   for the below. This way you can specify which posts you want the wordpress loop
   to include by using something like:
    `<?php query_posts(array('post_type'=>'post','
   additional parameters" => '...')); ?>` If you however have no PHP AND no WordPress
   experience, you might want to either read up on them or try finding a plugin 
   that does this.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Redirect gone wrong, asking for Category, but getting Page](https://wordpress.org/support/topic/redirect-gone-wrong-asking-for-category-but-getting-page/)
 *  Thread Starter [ewergreen](https://wordpress.org/support/users/ewergreen/)
 * (@ewergreen)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/redirect-gone-wrong-asking-for-category-but-getting-page/#post-2112377)
 * Changing the slug on the category worked as a quick fix, but would like to get
   a more permanent solution for this.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Create "page" to add products to a table via input fields](https://wordpress.org/support/topic/create-page-to-add-products-to-a-table-via-input-fields/)
 *  Thread Starter [ewergreen](https://wordpress.org/support/users/ewergreen/)
 * (@ewergreen)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/create-page-to-add-products-to-a-table-via-input-fields/#post-2108459)
 * Bump
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Conditional to check whether category has posts](https://wordpress.org/support/topic/conditional-to-check-whether-category-has-posts/)
 *  Thread Starter [ewergreen](https://wordpress.org/support/users/ewergreen/)
 * (@ewergreen)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/conditional-to-check-whether-category-has-posts/#post-2111030)
 * Thanks, that solved it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Taxonomy Images II] [Plugin: Category Images II] Invalid argument supplied for foreach](https://wordpress.org/support/topic/plugin-category-images-ii-invalid-argument-supplied-for-foreach/)
 *  [ewergreen](https://wordpress.org/support/users/ewergreen/)
 * (@ewergreen)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-category-images-ii-invalid-argument-supplied-for-foreach/#post-1854582)
 * Tried calling this outside the loop using both ciii_category_images() and ciii_category_archive_image();
   in my template and also received the following error.
 * Warning: Invalid argument supplied for foreach() in /home/myname/public_html/
   wp-content/plugins/category-images-ii/category-images-ii.php on line 233

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

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