WooCommerce plugin to display a widget with 3 given products - woocommerce

Let's say I have all the backend logic implemented already in a WooCommerce plugin to select the 3 products from the entire store inventory that the current user is most likely to buy. How do I now display them nicely, in the same way the would be presented in the store in a vertical widget above the fold?

Related

Is it possible to field map wpforms data to woocommerce products and add the items to cart?

I am using wpforms elite (with webhooks) in hopes to simplify the order process for woocommerce customers.
When a user submits the form at this url, http://implantlogic.wpengine.com/device-selection/ I hope to have products added to the cart based on users selections.
For example, if the user selects tooth one on the tooth selection page of the form, this product will need to be added to the cart with all fields populated http://implantlogic.wpengine.com/product/tooth-1/ and this applies to other things the user selects on the form as well which would trigger simple field mapping or the addition of simple products to the cart.
Right now I just need to know if this is possible or if I should seek other methods to solve this issue and create the same experience.

How to code bulk order form in wordpress

We developing a website for wholesale marketer,
In this when user click on products for eg. if user see t-shirt, he can choose multiple sizes, colors at a time and if user select 3 sizes for a product then in an increment box value show as 3
is this possible in wordpress without using paid plugin.
Have a look at this free plugin
https://wordpress.org/plugins/woo-quick-order-table-view/
It has Lightbox view for more details on the same page for each product also.

BIGCOMMERCE - Add required field based on quantity

I am designing a T-shirt store for a client and need to be able to add custom fields to a BigCommerce product based on the user requesting more than one product (tshirt)
So - if the user has 2 products - they would be asked to complete fields for reverse name and size. Is this possible?
There aren't conditional options out of the box in Bigcommerce. You'd have to have unrequired fields that were hidden unless multiple quantities were selected (using javascript to accomplish the hide/show).
Alternatively, you can limit the item so only one can be added to the cart at a time. This could be a negative customer experience though.

Drupal Commerce Kickstart 2 change variation and content types to modify way products are displayed

I'm learning Drupal Commerce with a Commerce Kickstart 2 installation. I've understood in part the way products are displayed, with variation types and content types.
Have made some changes like visible/hidden product fields, and change the order product fields are displayed. But didn't get how, for example, in
http://demo.commerceguys.com/ck/bags-cases/commerce-guys-laptop-bag
the bag stay positioned left side and others product fields right side.
I'm running Drupal 7 and Commerce Kickstart 2
I'd like to know how to define new positions for product fields in my drupal commerce site.
The product page is displayed using the "Cloud Zoom" property. If you go to the manage display of the Product display type, you can find out more.

Filtering my products on drupal commerce

I have imported 5.000 to my drupal-commerce website.I want the user to be able to navigate fast on all of these products,so I just figured out that I need to make somehow a filter or a search that when the user chooses/selects some of the features of the product the result will be only the products with these features.How can I manage to do this on Drupal 7 and Drupal Commerce(Commerce kickstart?)
The short answer is that you'll probably want to use the Views module. You can create a Views page display for your main products page that loads the Commerce product displays. Since the product displays don't actually contain the field values that you'd want to filter (they're on the referenced products), you'll need to add a Relationship to the products. That'll let you add filter criteria for product fields (exposing them will make them visible to the user). If you want the exposed filters to appear in a sidebar, use the "Exposed form in block" option on the Views display to create a filter block that you can add to your sidebar region on Administration » Structure » Blocks (/admin/structure/block).
Most people who have used Views over the years are used to outputting the Views result using Fields and then customizing the display of the fields with template files or extensive configuration, etc. However, you can create a custom view mode for your product display content types and give them layout with Display Suite. You can output those custom displays in Views using the Content Format.

Resources