diff --git a/packages/theme/components/CartSidebar.vue b/packages/theme/components/CartSidebar.vue index 2487aa922..4638b933f 100644 --- a/packages/theme/components/CartSidebar.vue +++ b/packages/theme/components/CartSidebar.vue @@ -51,6 +51,12 @@ /> + + @@ -243,7 +249,7 @@ export default { } const handleCheckout = (checkoutUrl) => { setTimeout(() => { - window.location.replace(checkoutUrl) + window.location.href = checkoutUrl; }, 300) } const updateQuantity = debounce(async ({ product, quantity }) => { @@ -382,11 +388,14 @@ export default { --cp-compare-opacity: 1; @include for-desktop { .collected-product__properties { - display: none; + display: block; } } } } +::v-deep .sf-collected-product__configuration { + display: block; +} .coupon-form-wrapper{ display: flex; margin-bottom: 40px; diff --git a/packages/theme/components/SearchResults.vue b/packages/theme/components/SearchResults.vue index 1445d6fac..d00b3f16f 100644 --- a/packages/theme/components/SearchResults.vue +++ b/packages/theme/components/SearchResults.vue @@ -49,6 +49,7 @@ :title="productGetters.getName(product)" :add-to-cart-disabled="getStockCount(product) <= 0" :link="localePath(getProductLink(product))" + :wishlist-icon="false" @click:add-to-cart=" handleAddToCart({ product, quantity: 1, currentCart }) " @@ -116,6 +117,7 @@ :title="productGetters.getName(product)" :add-to-cart-disabled="getStockCount(product) <= 0" :link="localePath(getProductLink(product))" + :wishlist-icon="false" @click:add-to-cart=" handleAddToCart({ product, quantity: 1, currentCart }) "