03.09.2021, 07:47
Add this to Custom JavaScript. Add widget-autoopen class to the button that will be clicked when the plan is shown.
Code:
$(function(){
function showWidgets() {
$('#plan-' + currentPlanId).find('.widget-autoopen').trigger('vclick');
}
$('body').on('showplan', showWidgets);
showWidgets();
});