Hello. How can I create a slideshow instance using a taxonomy view?
I have already followed the instructions at Slideshow instances but the style is not applied:
Hello. How can I create a slideshow instance using a taxonomy view?
I have already followed the instructions at Slideshow instances but the style is not applied:
No Universal solution fits all special business requirements. Our experienced team is ready with ideas and state-of-the-art technical solutions to consult the best solution within your budget.
Hi,
Can you send me your developing link? I'll check and send you code.
(You can email your link to [email protected])
Best regards,
Neo Khuat
Hello. Got it working by copying and changing also "views-view-fields--slideshow--slideshow-kwicks.tpl.php" like this:
<div class="kwick_shadow"></div>
<div class="kwick_title"><?php print $fields['name']->content; ?></div>
<div>
<div class="kwick_desc">
<div class="kwick_desc_title"><?php print $fields['name']->content; ?></div>
<div class="kwick_desc_detail"><?php print $fields['description']->content; ?></div>
</div>
<?php print $fields['field_slideshow']->content; ?>
</div>
Instead of:
<div class="kwick_shadow"></div>
<div class="kwick_title"><?php print $fields['title']->content; ?></div>
<div>
<div class="kwick_desc">
<div class="kwick_desc_title"><?php print $fields['title']->content; ?></div>
<div class="kwick_desc_detail"><?php print $fields['body']->content; ?></div>
</div>
<?php print $fields['field_slideshow']->content; ?>
</div>
Thanks