if image not uploaded form admin in this case i want to set default image
{% set first_image = ps.media.images|first %}
{{ first_image.cropZoom(900,300).html() }}
if image not uploaded form admin in this case i want to set default image
{% set first_image = ps.media.images|first %}
{{ first_image.cropZoom(900,300).html() }}
Assumed default.jpg is in the user/pages/images folder, you can do something like this:
{% set firstimage = ps.media.images|first %}
{% set defaultimage = page.find('/images').media['default.jpg'] %}
{% if firstimage %}
{{ firstimage.cropZoom(900,300).html() }}
{% else %}
{{ defaultimage.cropZoom(900,300).html() }}
{% endif %}
Log in to reply.
| Topic | Participants | Replies | Views | Activity |
|---|---|---|---|---|
| 0 | 1362 | 9 years ago | ||
| 2 | 940 | 9 years ago | ||
| 2 | 4069 | 9 years ago | ||
| 1 | 2959 | 9 years ago | ||
| 3 | 1124 | 9 years ago |