Wix How to build 1 page where inventory is displayed and can be ordered on the same page - e-commerce

Objective: Build shop page on website that displays entire inventory and allows users to add items and quantities on the same page.
Current Situation: Currently, customers go to Shop page then select a product which takes them to another page to add to cart. If a customer wants to order mulitple items then have to click on each product to order then have to go back to shop page to select the next product to order and so on.
I would like the ability for customers to view and add on 1 page the inventory and their order.
See images screen shots I got from a website that I would like to build.
I am using wix.

You can do this with code. You'll need to use the addToCart() function.
You can see a great example of what you're trying to do, with code and even a site template, here.

Related

Liquid - get product ID and display custom/specific information dynamically

I am trying to add a small 'lockup' / promo to a page that loads information dynamically based on page.metafield information. Replacing images, video ID's etc. Which all works just fine.
My client is asking for a small area to display a product that relates to this dynamically changing content and I am struggling to come up with a good way to do this.
The current setup is that we have 30 pages with a set of 8 metafields each page. Each one of these pages must show a different , single product with an image, title, price, buy button and another button that links out to a partner site.
I can create snippet and load almost all of this info through metafields manually (price, title etc the client could just add to another metafield) but I would prefer to load a product to pull this info so it can be added to cart. Although I can add product data manually, I still don't actually know which product will get added to the cart, because I'm on a 'page' not a 'product'.
The products themselves are using a custom template that is different to the rest of the site so that seems like its not an option. The template for this content page is just 'page' but surely I can call the product object someway? If the client entered a product ID in the metafields, is there a way of pulling that IDs data easily?
Whatever you mean by pulling ID's, but there are a couple of ways of dealing with this. One, you have a Storefront API token, allowing you to freely and securely call Shopify with JS and get back all the data about the ID you're interested in. Or, you have an App installed in the store, in which case you can setup and callback an App Proxy, providing that ID, and getting back all the info you need. Lots of options!

OroCommerce: Configurable Product display in storefront and backoffice

I've created configurable product (internet connection with different speed) following docs, in storefront I see dropdown with product vairants, all is ok.
But in backoffice (when editing shoppingList or creating order) there is always only one variant of product with no ability to quickly select another option (eg change speed to another one) - is this how oro backoffice works and nothing could be changed to make backoffice user quickly navigate between product variants (eg change speed from 1M to 2M by clients phone request)?
Cant even edit product in shopping list
UPD:
If there's no way to see user-friendly configurable product in backoffice than I need to implement smth like button near each product in LineItem which will show popup with product variants. When user will select another option request will be sent to some route and it will run smth like $lineItem->setProduct($newProduct); , grid reloaded and new product variant selected. Is it ok or it will break something in oro?
Where to start for adding that button and popup? Eg I cant edit oro shopping list template, how to properly extend it?
On the line item editing form you cannot change the product, no matter it's configurable or simple. It's done intentionally.
If you want to change the product, you always can remove a line item and add the new one with updated options manually:

I want to show recently view product in page account Bigcommerce

I want to show recently view product in page account Bigcommerce
This template in cornerstone has the code to show recently viewed products https://github.com/bigcommerce/cornerstone/blob/master/templates/pages/account/recent-items.html
If you want to access the products directly from your own template, you have access to customer.recently_viewed_products.items

Delete all products at once - BigCommerce

I'm trying to delete all products on BigCommerce eshop at once but it deletes only those products which are on the first page.
When I click on the checkbox in the red circle, it selects products on current page so I can delete only 20 products.
Is it possible to delete them all at once? I've searched for this but can't find relevant information except those which are couple years old.
You can change the page view to be higher to delete them from the UI or change the query string that the view count attaches once changed.
Alternatively, you can use a tool like Postman and send a DELETE request to the /api/v2/products endpoint.

Prestashop : Adding a field to choose Shipping carrier in product page front office

I'm using PrestaShop 1.5.5.0.
I want to add a custom check box list to the product page so a customer can choose shipping carrier on the product details page. Can it be possible ? I can add a specific fields in the product details page. As I'm new it's little difficult for me to figure out how can I add other details and carry the values to the order page and that is also dynamically. Is there any module available by which I can accomplish the task ? Please suggest me.
What I want to do is this : Choosing shipping carrier in product page :
http://www.wayfair.com/LifeStyle-Solutions-Zurich-Platform-Bed-LS3-ZUR-X-CP-LF1087.html
Well It's a tough task. You need to work on the controller if you want to carry the values or create a module like shipping estimate and hook it to the product page that might work.