Apology for the mistake. Please delete the JavaScript from Custom Code. Then go to this location: templates/arino/js/main.js and replace line 222 to 229 to this
//Add to cart change position
if ($(".com-j2store.view-products").length > 0) {
$(".com-j2store.view-products .j2store-products-row .j2store-single-product").each(function(key, item) {
let pricesWrap = $(this).find($(".product-price-container"));
let addtocart = $(this).find($("form.j2store-addtocart-form"));
addtocart.append(pricesWrap);
});
}