Hi All
We have a site on 2.4 and the client requires the ability to sort order products within categories using drag and drop.
Products....
//Relate to the category pages
static $belongs_many_many = array(
'Categories' => 'CategoryPage'
);
Category....
static $many_many = array(
'Products' => 'Product'
);
I cant think of a way to add in drag and drop sort order on this, fine with one-to-many, but not sure there is a way to do this in 2.4?
Any help would be great, thanks.