"Add To Cart" Button And "Qty" Input Box Not In Product Card, Debut theme?

Hi guys,

Just discovered that “Add to cart” button and “Qty” input box not in product card in " YOU MAY ALSO LIKE" section. In collections, all great.

Code used for collections:

theme.j

if(window.location.href.indexOf(“allianceautoproducts.com/collections”) > -1) {
const list = document.querySelectorAll(“.grid-view-item.product-card”);
const addDiv = document.querySelectorAll(“.grid__item.grid__item–collection-template.small–one-half.medium-up–one-quarter form”);
var index = 0;
list.forEach(l => {
l.style.height = “auto”;
l.appendChild(addDiv[index])
index ++;
})
}

Thank you

allianceautoproducts.com