diff --git a/templates/eggs/templates/oscar/egg-base.html b/templates/eggs/templates/oscar/egg-base.html
index ee86053..79842c8 100644
--- a/templates/eggs/templates/oscar/egg-base.html
+++ b/templates/eggs/templates/oscar/egg-base.html
@@ -28,13 +28,13 @@
{% if setting %}
{% with image=setting.logo %}
- {% oscar_thumbnail image.url '180x180' crop='center' quality=99 as thumb %}
+ {% oscar_thumbnail image '180x180' crop='center' quality=99 as thumb %}
- {% oscar_thumbnail image.url '32x32' crop='center' quality=99 as thumb %}
+ {% oscar_thumbnail image '32x32' crop='center' quality=99 as thumb %}
- {% oscar_thumbnail image.url '16x16' crop='center' quality=99 as thumb %}
+ {% oscar_thumbnail image '16x16' crop='center' quality=99 as thumb %}
- {% oscar_thumbnail image.url setting.logo_size crop='center' quality=99 as thumb %}
+ {% oscar_thumbnail image setting.logo_size crop='center' quality=99 as thumb %}
{% endwith %}
{% endif %}
diff --git a/templates/eggs/templates/oscar/partials/brand.html b/templates/eggs/templates/oscar/partials/brand.html
index 774f4fc..809b631 100644
--- a/templates/eggs/templates/oscar/partials/brand.html
+++ b/templates/eggs/templates/oscar/partials/brand.html
@@ -3,7 +3,7 @@
{% block brand_title %}
{% if setting %}
{% with image=setting.logo %}
-{% oscar_thumbnail image.url setting.logo_size crop='center' quality=99 as thumb %}
+{% oscar_thumbnail image setting.logo_size crop='center' quality=99 as thumb %}
@@ -13,7 +13,7 @@
{% if setting %}
{% with image=setting.logo %}
-{% oscar_thumbnail image.url setting.logo_size crop='center' quality=99 as thumb %}
+{% oscar_thumbnail image setting.logo_size crop='center' quality=99 as thumb %}
@@ -25,4 +25,4 @@