Hello,
Thank you for contacting us
You need use this code :
document.addEventListener('DOMContentLoaded', function(){
var tags = Array.apply(null, document.querySelectorAll('.gallery-tag'));
tags.sort(function(tag1, tag2){
if (tag1.textContent.toLowerCase() > tag2.textContent.toLowerCase()) {
return 1;
} else if (tag1.textContent.toLowerCase() < tag2.textContent.toLowerCase()) {
return -1;
}
return 0;
});
tags.forEach(function(tag){
tag.parentNode.append(tag)
});
});
Best Regards,
Vyacheslav, Balbooa Support Team