Hi,
1. There is no Yootheme content source plugin for HikaShop at the moment.
However, you can use HikaShop content tags in Yootheme to add product add to cart button, and some of the product main information inside the page builder:
www.hikashop.com/support/documentation/1...-product-insert.html
Also, you can include the HikaShop content module and the HikaShop cart module in there too.
2. Regarding your second question, I suppose that you're talking about adding the classes of IUkit to HikaShop elements.
The main thing will be the buttons and this is possible with the CSS options available in the HikaShop configuration:
www.hikashop.com/support/documentation/5...fig.html#display_css
For example, instead of "hkbtn", you could have "uk-button" in the "CSS for buttons" setting. And instead of "hkcart", you could have
"uk-button-primary" in the "Extra CSS for add to cart buttons" setting.
If you want to change the form-select, form-control and input-group classes on the forms of HikaShop on the frontend, there is no easy option to change. However, if you can define the corresponding PHP constants ( HK_FORM_CONTROL_CLASS HK_FORM_SELECT_CLASS and HK_GROUP_CLASS ) before HikaShop is loaded (in a system plugin for example), you can set the UIKit classes instead:
chatgpt.com/share/683ee5a2-e2cc-8003-8206-b4cea7b6a3ed
Another solution would be to use ReReplacer to dynamically replace the classes in the HTML. I've never tried though.