This plugin almost does not support child themes, it checks names only for current theme, not for its parent.
Quick and dirty fix: you can add name of your theme to icyclub.php near name of parent theme:
if ( 'Shopbiz Lite' == $theme_name
|| 'Shopbiz Warm' == $theme_name
|| 'Spabeauty' == $theme_name ) {
require_once('inc/shopbiz/features/customizer.php');
require_once('inc/shopbiz/sections/homepage.php');
}
In this example 'Shopbiz Lite'
is parent theme and 'Shopbiz Warm'
is my child theme. You should change plugin twice: in function icycp_activate
(lines 24-59) and below (lines 87-130), before definition of function excerpt
.