Hello Deon,
Right after you close a popup application removes it from the DOM, so all events, which go after that event are ignored.
Please use a custom JS as a workaround below for that case:
presetTimeout(function(){
var popupElement = Apperyio("popup2");
if (popupElement.popup("option", "positionTo") === "origin") {
popupElement.popup("open", {
transition: "none",
positionTo: "#" + $(this).attr("id")
});
} else {
popupElement.popup("open", {
transition: "none"
});
};
}, 100);/pre
here popup2 - name of the popup which need to be opened
100 - a timeout in ms between closing a previous popup and opening a next one