Edit file File name : home_sections.js Content :(function ($) { "use strict"; const style = getComputedStyle(document.body); const primaryColor = style.getPropertyValue('--primary'); function updateToDatabase(table, idString) { $.post(adminPanelPrefix + '/settings/personalization/home_sections/sort', {table: table, items: idString}, function (result) { $.toast({ heading: result.title, text: result.msg, bgColor: primaryColor, textColor: 'white', hideAfter: 10000, position: 'bottom-right', icon: 'success' }); }).fail(err => { $.toast({ heading: "Error", bgColor: '#f63c3c', textColor: 'white', hideAfter: 5000, position: 'bottom-right', icon: 'error' }); }); } function setSortable(target) { if (target.length) { target.sortable({ group: 'no-drop', handle: '.move-icon', axis: "y", update: function (e, ui) { var sortData = target.sortable('toArray', {attribute: 'data-id'}); var table = e.target.getAttribute('data-order-table'); updateToDatabase(table, sortData.join(',')); } }); } } var target = $('.draggable-lists'); setSortable(target); })(jQuery); Save