Alex000 Posted April 20, 2019 Report Share Posted April 20, 2019 Всем привет, подскажите пожалуйста как выводить свойства товара следующим образом, выводим ну к примеру 5 свойств, затем идёт ссылка "показать остальные" и при нажатии на ссылку что бы открывались остальные свойства.Заранее благодарю. Quote Link to post Share on other sites
chocolate_moles Posted April 20, 2019 Report Share Posted April 20, 2019 Всем привет, подскажите пожалуйста как выводить свойства товара следующим образом, выводим ну к примеру 5 свойств, затем идёт ссылка "показать остальные" и при нажатии на ссылку что бы открывались остальные свойства.Заранее благодарю. <style type="text/css"> .features.shorty .hidden{ display: none } </style> <table class="features shorty"> {foreach $features as $f} <tr class="{if $f@iteration > 5}hidden{/if}"> <td>{$f->name}</td> <td>{$f->value}</td> </tr> {/foreach} </table> <button type="button" class="js-show-more">Показать еще</button> <script type="text/javascript"> document.querySelector('.js-show-more').addEventListener('click', function(){ document.querySelector('.features').classList.remove('shorty'); }) </script> Quote Link to post Share on other sites
Alex000 Posted April 20, 2019 Author Report Share Posted April 20, 2019 Большое спасибо. Quote Link to post Share on other sites
Alex000 Posted April 21, 2019 Author Report Share Posted April 21, 2019 У меня не заработало пока не заменил строчку {foreach $features as $f} на {foreach $product->features as $f} Quote Link to post Share on other sites
LUN Posted February 18 Report Share Posted February 18 Подскажите пожалуйста, в каком файле необходимо внести данные изменения? Quote Link to post Share on other sites
sergeevizh Posted February 18 Report Share Posted February 18 (edited) 6 минут назад, LUN сказал: Подскажите пожалуйста, в каком файле необходимо внести данные изменения? /design/ваш_шаблон/html/product.tpl Edited February 18 by sergeevizh Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.