Announcement

Collapse
No announcement yet.

product category showing full images, not thumbnails

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    product category showing full images, not thumbnails

    Im trying to get the product thumbnails to show up for a specific category page. in the Category Product List Layout tab, I changed the view to point+click mode, then selected that it show in line item, check marked thumbnail, then clicked on the update button. the code for it is:

    Code:
    <td class="item-image">
                    <mvt:if expr="NOT ISNULL l.settings:product:thumbnail">
                     <a href="&mvte:product:link;"><img  src="&mvte:product:thumbnail;" alt="&mvte:product:name;"  /></a>
                    <mvt:else>
                    &nbsp;
                    </mvt:if>
                </td>
    the problem, is that it is showing the full sized images and not thumbnails, the mvt:if expression is calling the mvte:product:thumbnail; and not the image, so I dont understand what might be happening.

    you can see the page here:
    http://lightparts.mivamerchant.net/m...gory_Code=USED

    any suggestions?

    #2
    Re: product category showing full images, not thumbnails

    ok since I had little help with support on this issue, I figured out a work around, I added this to the td .item-image img line (901) in the cssui.css file

    [code
    ]td .item-image img {
    /* max-height: 100px; */
    width:80px;
    height:80px;
    overflow:hidden;
    }
    [/code]

    maybe this will help someone else

    Comment


      #3
      Re: product category showing full images, not thumbnails

      Originally posted by neuroticartist View Post
      ok since I had little help with support on this issue, I figured out a work around, I added this to the td .item-image img line (901) in the cssui.css file

      [code
      ]td .item-image img {
      /* max-height: 100px; */
      width:80px;
      height:80px;
      overflow:hidden;
      }
      [/code]

      maybe this will help someone else
      To fix this correctly you'll need to post the product display layout from the ctgy page. The code you posted does not appear to be what you are actually using anyway. At least not on the page you gave a link to which is a different ctgy template from your other category pages by the looks.

      each one has it's own ctgy product display layout tab
      Last edited by Mark Hood; 10-24-14, 11:52 AM.
      Mark Hood
      Vermont Gear

      Comment

      Working...
      X