I’ve added a custom skin to the grid using this function.
add_filter(‘tg_register_item_skin’, function($skins) {
// just push your skin slugs (file name) inside the registered skin array
$skins = array_merge($skins,
array(
'tg-pomo-blog-skin' => array(
'filter' => 'POMO Blog Skin', // filter name used in slider skin preview
'name' => 'POMO Blog Skin', // Skin name used in skin preview label
'col' => 1, // col number in preview skin mode
'row' => 1 // row number in preview skin mode
)
)
);
// return all skins + the new one we added (property)
return $skins;
});
I’ve done this on about a dozen sites without problem. This is the first time i’ve tried with multisite. When I go to choose a skin in the editor it just says “Please wait, loading skins…”. Is that functionality not supported in multisites.
