4.3.0 Adds Custom Fields, Category Tags, Grid templates
The latest version of MyMuse adds integration with Joomla's Custom Fields and Tags.
You can now add Field Groups and Fields to your MyMuse products. This is a great boon as you can add as many custom fields as you like. If you put them in a field group, that group appears as a new tab in the Products Edit page. For templates, they are accessible in a $products->jfields array.
You can now add Tags to MyMuse Categories. First create the tags in the Tag Manager, add them in the Category Edit page. They can be accesssed in tempaltes with JHelperTags:
$itemtags = (new JHelperTags)->getItemTags('com_mymuse.category', $this->child->id);
The stock MyMuse templates have been rewritten to to use CSS Grid instead of tables. On mobile devices, rows for Track listings or oder items turn into 'cards'. Much improved layout.
If you use your own custom tempaltes, see about integrating the grids into yours.