11.02.2026, 13:00
Change script to this, open browser dev tools (F12) and check what you get in the console. Are you sure that the target plan ID is 112?
Code:
$(function(){
if (typeof grp == 'undefined') {
return;
}
console.log('custom js initialized');
$('body').on('showplan', function(event, id) {
console.log('changed to plan', id);
if (id == 112) {
grp.write('50/1/0', 0);
}
}).trigger('showplan', [ currentPlanId ]);
});