Product Groups - Script

PHOTO EMBED

Mon Apr 28 2025 11:45:02 GMT+0000 (Coordinated Universal Time)

Saved by @vishalsingh21

// Product - View More Button
const $products = $('.item-group-slider .slick-slide');

$products.each(function(index){
    let href = $(this).find('.itemTitle a').attr('href');
    $(this).find('.itemDetail').append($(`<a href="${href}" class="cta-btn">View More</a>`));
});
content_copyCOPY