I am using the theme Prestige version 4.4.5, and I cannot see the variants which I have added to my products on the website. The variants are no where to be found when previewing the website, despite the fact that I added them to each product.
I tried using this script:
$(document).ready(function() {
var sections = new theme.Sections();
sections.register('collections-list-template', theme.FeaturedCollections);
sections.register('collection-row-section', theme.CollectionRows);
sections.register('collection-template', theme.Collection);
sections.register('header-section', theme.HeaderSection);
sections.register('list-collections-template', theme.ListCollections);
sections.register('map-section', theme.Maps);
sections.register('product-template', theme.Product);
sections.register('slideshow-section', theme.SlideshowSection);
});
It hasn’t worked for me. Is there anything I can do to fix this? I could just change this to a different theme where the variants are working, but I’d like to try fixing this first.