Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Ограничить количество строк в характеристиках товара


 Share

Recommended Posts

Добрый вечер. Помогите ограничить количество строк (не более 5), с атрибутами товара. Ссылка https://www.caseroom.in.ua/phone-case/chehl-dlja-apple/ 

Скрин:

 scr.jpg.0dc84e3ff3ef22837cbdac18533e391e.jpg

Используемый код для вывода атрибутов при наведении на фото товара в категории:

<div class="atributediv">
    <a href="<?php echo $product['href']; ?>" style="color:black;text-decoration:none;"><img itemprop="image" src="<?php echo $product['thumb']; ?>" alt="<?php echo $product['name']; ?>" title="<?php echo $product['name']; ?>" class="img-responsive" />
    <div class="more"></div>
          <div class="desc">
	          <div class="description">
             <?php if($product['attribute_groups']) { ?>
             <table>
             <?php foreach($product['attribute_groups'] as $attribute_group) { ?>
             <thead><!--названия групп-->
             <tr>
             <td colspan="2"><?php echo $attribute_group['name']; ?></td>
             </tr>
             </thead><!---->
             <tbody>
             <?php foreach($attribute_group['attribute'] as $attribute) { ?>
             <tr>
             <td><?php echo $attribute['name']; ?></td>
             <td><?php echo ":"; ?>&nbsp<?php echo $attribute['text']; ?></td>
             </tr>
             <?php } ?>
             </tbody>
             <?php } ?>
             </table>
             <?php } ?>
          </div>
	</a></div>
</div></center>

 

 

Link to comment
Share on other sites

попробуйте так

    
    <div class="atributediv">
    <a href="<?php echo $product['href']; ?>" style="color:black;text-decoration:none;"><img itemprop="image" src="<?php echo $product['thumb']; ?>" alt="<?php echo $product['name']; ?>" title="<?php echo $product['name']; ?>" class="img-responsive" />
    <div class="more"></div>
          <div class="desc">
	          <div class="description">
             <?php if($product['attribute_groups']) { ?>
             <table>
             <?php $i = 1; foreach($product['attribute_groups'] as $attribute_group) { ?>
             <thead><!--названия групп-->
             <tr>
             <td colspan="2"><?php echo $attribute_group['name']; ?></td>
             </tr>
             </thead><!---->
             <tbody>
             <?php foreach($attribute_group['attribute'] as $attribute) { ?>
		 <?php if($i>5){break 2;} ?>
             <tr>
             <td><?php echo $attribute['name']; ?></td>
             <td><?php echo ":"; ?>&nbsp<?php echo $attribute['text']; ?></td>
             </tr>
             <?php $i++; } ?>
             </tbody>
             <?php } ?>
             </table>
             <?php } ?>
          </div>
	</a></div>
</div>

 

  • +1 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.