Hi,
Well, it depends how you have the configurator added to your website.
Supposing that you base yourself on the index.html file from the github, you have the add to cart button displayed with that code on the configurator:
<button type="button" class="btn btn-large btn-block btn-success" name="addToTheBag" id="addToTheBag">Add to bag <i class="icon-briefcase icon-white"></i></button>
So what you need to do there is to add a onclick attribute there and call a javascript function that you'll define in one of the <script> tags of the configurator.
And in that function, you need to do two things:
- get the selected elements in the configurator from the page using the DOM.
- redirect to the add to cart URL of a product and add the data from the selected elements as custom field values in the URL.
(you will first have to create custom fields of the table "item" so that you can pass them the values of the configurator. You can do that via the menu Display>Custom fields with Hikashop Business).
www.hikashop.com/forum/2-general-talk-ab...ct-fields.html#16220
And if you want to set the price based on the custom item fields (if the price of the product changes based on what the customer configured), you can use/base yourself on the donation plugin:
demo.hikashop.com/index.php/en/hikashop/...t-page/donation-page
That way, when you press on the add to cart button of the configurator, it will redirect to the add to cart URL of a product you'll have created before, with the data selected in the configurator in custom item fields and then it will redirect to the checkout after the add to cart is successful so that the customer can place his order.