Produtos

has_custom_image

O método has_custom_image retorna true se o usuário carregou uma imagem própria para essa propriedade no administrador Nuvem Shop.

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 %}
}