In category view the description is shown partly

I i select a category i see the product title below the image partly. How to change this to show the whole title?

3 answers

Profile photo of info@barcom.nl 370.00 $tone February 9, 2016
Public

I managed to change this list.phtml . in /app/design/frontend/default/jm_crafts/template/product/list.phtml. See below.
           <h2 class=”product-name”>
              <a href=”<?php echo $_product->getProductUrl() ?>” title=”<?php echo $this->stripTags($_product->getName(), null, true) ?>”>
                        <?php $pname = $_helper->productAttribute($_product, $_product->getName(), ‘name’) ?>
                        <?php
                            if (strlen($pname) > 75) :
                                echo strip_tags(substr($pname, 0, 65)).’…’;
                            else :
                                echo $pname;
                            endif;
                        ?>
                      </a>
            </h2>

#2
Profile photo of Mall Staff 184060.00 $tone February 10, 2016
Public

Hi Hamed,
Yes, is that custom code help you to solve the issue?
Let’s contact me if you need further assistance!
Regards,
Mall.

#3

Please login or Register to Submit Answer

Written By

Comments