Title: nomdecode's Replies | WordPress.org

---

# nomdecode

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Pictures are not showing correct in Firefox](https://wordpress.org/support/topic/pictures-are-not-showing-correct-in-firefox/)
 *  [nomdecode](https://wordpress.org/support/users/nomdecode/)
 * (@nomdecode)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/pictures-are-not-showing-correct-in-firefox/#post-4281958)
 * The ads should stay at the same place where they are right now. Try it.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Pictures are not showing correct in Firefox](https://wordpress.org/support/topic/pictures-are-not-showing-correct-in-firefox/)
 *  [nomdecode](https://wordpress.org/support/users/nomdecode/)
 * (@nomdecode)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/pictures-are-not-showing-correct-in-firefox/#post-4281866)
 * The problem is caused by the ad above your image, which has a `float: left` which
   is pushing your image.
 * Look for this element:
 * `<div style="margin: 5px;padding: 0px;float:left">`
 * and change the float:left to **float:none**. That should do it.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Excerpts with thumbnails for older posts?](https://wordpress.org/support/topic/excerpts-with-thumbnails-for-older-posts/)
 *  [nomdecode](https://wordpress.org/support/users/nomdecode/)
 * (@nomdecode)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/excerpts-with-thumbnails-for-older-posts/#post-4227110)
 * You can simply use a boolean in your loop to test if it is the first post :
 * Find this:
 * `<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>`
 * and replace it with:
 * `<?php if ( have_posts() ) : $first=true; while ( have_posts() ) : the_post();?
   >`
 * You can then display the content or the excerpt (and other different markup) 
   depending on the `$first` value:
 * `<?php if ($first) { $first=false; the_content(); } else the_excerpt(); ?>`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Creating THIS form with WordPress? Help a Newbie?](https://wordpress.org/support/topic/creating-this-form-with-wordpress-help-a-newbie/)
 *  [nomdecode](https://wordpress.org/support/users/nomdecode/)
 * (@nomdecode)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/creating-this-form-with-wordpress-help-a-newbie/#post-4227676)
 * [Gravity Form](http://www.gravityforms.com/) is an excellent and easy to use 
   form builder plugin. It’s not free, but worth the price, especially if coding
   is not your cup of tea.
 * For a free alternative, [Contact Form 7](http://wordpress.org/plugins/contact-form-7/)
   is also good, flexible, although a little more complicated to use (you need at
   least some basic knowledge of html and css).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [What's The Best Way To Make a Table In WordPress](https://wordpress.org/support/topic/whats-the-best-way-to-make-a-table-in-wordpress/)
 *  [nomdecode](https://wordpress.org/support/users/nomdecode/)
 * (@nomdecode)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/whats-the-best-way-to-make-a-table-in-wordpress/#post-4228071)
 * You could use this plugin: [TablePress](http://wordpress.org/plugins/tablepress/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Transfer subdomain site to domain, from one host to another](https://wordpress.org/support/topic/transfer-subdomain-site-to-domain-from-one-host-to-another/)
 *  [nomdecode](https://wordpress.org/support/users/nomdecode/)
 * (@nomdecode)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/transfer-subdomain-site-to-domain-from-one-host-to-another/#post-4228376)
 * Oops. Sorry, missing link. Here it is: [http://codex.wordpress.org/Moving_WordPress](http://codex.wordpress.org/Moving_WordPress)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Transfer subdomain site to domain, from one host to another](https://wordpress.org/support/topic/transfer-subdomain-site-to-domain-from-one-host-to-another/)
 *  [nomdecode](https://wordpress.org/support/users/nomdecode/)
 * (@nomdecode)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/transfer-subdomain-site-to-domain-from-one-host-to-another/#post-4228375)
 * See the codex documentation here:
    [](http://codex.wordpress.org/Moving_WordPress)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sponsors Carousel] PHP snippet outputs nothing](https://wordpress.org/support/topic/php-snippet-outputs-nothing/)
 *  [nomdecode](https://wordpress.org/support/users/nomdecode/)
 * (@nomdecode)
 * [13 years ago](https://wordpress.org/support/topic/php-snippet-outputs-nothing/#post-3790728)
 * You’re welcome. Glad to hear everything works.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [PHP function for removing plugin in header.php](https://wordpress.org/support/topic/php-function-for-removing-plugin-in-headerphp/)
 *  [nomdecode](https://wordpress.org/support/users/nomdecode/)
 * (@nomdecode)
 * [13 years ago](https://wordpress.org/support/topic/php-function-for-removing-plugin-in-headerphp/#post-3790021)
 * If you want to hide the slider from only one page:
 *     ```
       <?php if ( !is_page ('your-page') ) {
       	echo slider_pro(1, array("width"=>"100%", "height"=>350, "effect_type"=>"swipe"));
       } ?>
       ```
   
 * If you want to hide it on multiple pages:
 *     ```
       <?php if ( !is_page (array ('your-page', 34, 'Another Page')) ) {
       	echo slider_pro(1, array("width"=>"100%", "height"=>350, "effect_type"=>"swipe"));
       } ?>
       ```
   
 * Replacing ‘your-page’, ‘Another Page’ and 34 with your pages – either using the
   page slug (‘your-page’), page title (‘Another Page’), or post ID (34).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sponsors Carousel] PHP snippet outputs nothing](https://wordpress.org/support/topic/php-snippet-outputs-nothing/)
 *  [nomdecode](https://wordpress.org/support/users/nomdecode/)
 * (@nomdecode)
 * [13 years ago](https://wordpress.org/support/topic/php-snippet-outputs-nothing/#post-3790605)
 * Try `<?php echo do_shortcode ('[sponsors_carousel]'); ?>`
 * [http://codex.wordpress.org/Function_Reference/do_shortcode](http://codex.wordpress.org/Function_Reference/do_shortcode)

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