Thread Starter
kizz
(@kizz)
Thanks, change of settings seemed to have an effect.
Thread Starter
kizz
(@kizz)
I noticed that this issue has been marked as resolved but I’d appreciate to learn if there are any more ‘robust’ solutions for this matter. Like maybe an adjustment in a template or something. Best option would be when this could be set in the backend of the plugin, where you would expect something like that. Thanks.
Thread Starter
kizz
(@kizz)
Managed to address this issue using javascript.
var myDiv = document.querySelector(".mage_grid_box");
if(myDiv.innerHTML.trim() === "") {
myDiv.innerHTML = "Sorry, no upcoming events.";
}
Still, an option in the plugin itself would be preferable.