Productos

has_custom_image

El filtro has_custom_image retorna true si el usuario subió una imagen para esta propiedad desde opciones de diseño. false en otro caso.

body{
    {% if "custom_background.jpg" | has_custom_image %}
        background-image: url( "{{ "custom_background.jpg" | static_url }}" );
    {% else %}
        background-image: url( "{{ ("bg/default.jpg") | static_url }}" );
    {% endif %}
}