Title: Product entry wrapper
Last modified: August 22, 2016

---

# Product entry wrapper

 *  Resolved [Rolf Allard van Hagen](https://wordpress.org/support/users/ravanh/)
 * (@ravanh)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/product-entry-wrapper/)
 * Hi,
 * I’m wondering why the product description is placed outside the hentry wrapper:
 *     ```
       <div id="post-<?php the_ID(); ?>" <?php post_class('entry product-content'); ?>>
           <?php the_post_thumbnail('product-image-large'); ?>
       </div><!--end .product-content.entry-->
   
       <div class="content-des">
           <?php the_content(__('Read the rest of this entry &raquo;','smartshop')); ?>
       </div>
       ```
   
 * The ‘problem’ with this is that custom css, style rules from other plugins or
   even javascript that depends on the hentry class will not apply to product content.
 * Would the following not be more logical?
 *     ```
       <div id="post-<?php the_ID(); ?>" <?php post_class('entry product-content'); ?>>
           <?php the_post_thumbnail('product-image-large'); ?>
   
           <div class="content-des">
               <?php the_content(__('Read the rest of this entry &raquo;','smartshop')); ?>
           </div>
       </div><!--end .product-content.entry-->
       ```
   
 * Or even leave out the `<div class="content-des">` because it’s not used for anything
   special anyway…
 * Cheers 🙂

Viewing 1 replies (of 1 total)

 *  Theme Author [puneetsahalot](https://wordpress.org/support/users/puneetsahalot/)
 * (@puneetsahalot)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/product-entry-wrapper/#post-5363220)
 * It will be better to remove content-des as it isn’t used.

Viewing 1 replies (of 1 total)

The topic ‘Product entry wrapper’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/smartshop/1.5.5/screenshot.png)
 * SmartShop
 * [Support Threads](https://wordpress.org/support/theme/smartshop/)
 * [Active Topics](https://wordpress.org/support/theme/smartshop/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/smartshop/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/smartshop/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [puneetsahalot](https://wordpress.org/support/users/puneetsahalot/)
 * Last activity: [11 years, 7 months ago](https://wordpress.org/support/topic/product-entry-wrapper/#post-5363220)
 * Status: resolved