5 lines
233 B
PHP
5 lines
233 B
PHP
<?php echo st_truncate_text($review->getProduct(), 20); ?>
|
|
<?php
|
|
if (strlen($review->getProduct()) > 20): ?>
|
|
...<a href="#" class="help" data-title="<?php echo $review->getProduct(); ?>" aria-expanded="false"></a>
|
|
<?php endif; ?>
|