niterider wrote:I couldn't find English Website sample but would you please look at the link below:
https://www.reyhoon.com/restaurants/red-crescent
if you push the + button, the product add to shopping cart on the side bar.
then we can increament quantity of products by click on + button and decreament the quntity by click on - button
I want to manipulate brooklyn theme to implement something like this.
Hi,
you need to customize the theme code ( and most certainly the nopCommerce core code ) in order to achieve what you want.
As a workaround, you can just make the flyout cart to be visible all the time. However, there might be some issues with this which you need to find a way to overcome.
@media all and (min-width: 1025px) {
.flyout-cart {
right: 0;
}
}
With the code above, you will make the flyout cart visible on desktop devices. But as I mentioned there might be some issues with this as by default there are some javascript calculations when you click the "Cart" button which now won't be executed as the cart will be always shown.
P.S. if you are using RTL, just change "right" property with "left";
Hope this helps!