This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="projects"> | |
<?php foreach($page->children()->visible()->shuffle() as $project): ?> | |
<?php $image = $project->images()->first() ?> | |
<li> | |
<a href="<?php echo $project->url() ?>"><img src="<?php echo $image->url() ?>" /></a> | |
</li> | |
<?php endforeach ?> | |
</ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Solution brought to you by Caroline Schnapp --> | |
<!-- See this: http://wiki.shopify.com/Related_Products --> | |
{% assign number_of_related_products_to_show = 3 %} | |
{% assign image_size = 'compact' %} | |
{% assign heading = 'Other fine products' %} | |
{% capture number_of_related_products_to_fetch %}{{ number_of_related_products_to_show | plus: 1 }}{% endcapture %} | |
{% if collection == null or collection.handle == 'frontpage' or collection.handle == 'all' %} |