• Hello,

    With an active child theme, the main theme and the Icyclub plugin do not work. Content is not loaded on the site page.
    What’s wrong? What should be done? I tried to update.

    Thanks.

Viewing 1 replies (of 1 total)
  • 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.

Viewing 1 replies (of 1 total)
  • The topic ‘Child theme and Icyclub plugin’ is closed to new replies.