removing thumbnail images in the Revolution theme

by dorim
2 replies
  • WEB DESIGN
  • |
Hi, Does anyone know how to remove the thumbnail image in the Revolution theme? If I don't load a thumbnail image I get the title text showing up twice on the homepage, I really don't want the thumbnail image at all. I removed it from the stylesheet as I was told to do and that totally messed the whole theme up so I had to reload the stylesheet, then I tried removing it from the home.php page and again it messed things up. Help, I am desperate!
#images #removing #revolution #theme #thumbnail
  • Profile picture of the author Harrison Ortega
    Assuming you have the revolution magazine theme. Open the home.php and remove the following code.

    PHP Code:
    <?php if( get_post_meta(, "Thumbnail"true) ): ?>
    <img style="float:left;margin:0px 5px 0px 0px;" src="<?php echo get_post_meta(, "Thumbnail"true); ?>" alt="alt text" />
    <?php else: ?>
    <img style="float:left;margin:0px 5px 10px 0px;"  src="<?php bloginfo('template_url'); ?>/images/thumbnail.jpg" alt="Default Thumbnail" />
    <?php endif; ?>
    The code may be slightly different depending on the version you have. If you don't find this code on your home.php then let me know which Revolution theme you have as well as its version.
    Signature
    NJ web design / NJ Web Designer. MY Wordpress portfolio. 10 years of HTML/CSS - 6 years developing professional Wordpress websites. Currently not available for services.
    {{ DiscussionBoard.errors[2673430].message }}
    • Profile picture of the author dorim
      Originally Posted by Harrison Ortega View Post

      Assuming you have the revolution magazine theme. Open the home.php and remove the following code.

      PHP Code:
      <?php if( get_post_meta(, "Thumbnail"true) ): ?>
      <img style="float:left;margin:0px 5px 0px 0px;" src="<?php echo get_post_meta(, "Thumbnail"true); ?>" alt="alt text" />
      <?php else: ?>
      <img style="float:left;margin:0px 5px 10px 0px;"  src="<?php bloginfo('template_url'); ?>/images/thumbnail.jpg" alt="Default Thumbnail" />
      <?php endif; ?>
      The code may be slightly different depending on the version you have. If you don't find this code on your home.php then let me know which Revolution theme you have as well as its version.

      It worked! Thank you thank you!!!
      Signature

      {{ DiscussionBoard.errors[2675106].message }}

Trending Topics