• june 3 2020

    Another update that breaks the chilly theme.

    Spicepress got a new feature which works fine, Chilly however shares most files with spicepress but alas.. the include file is missing from the list of include files for the chilly theme.

    to fix it:

    check spicebox.php file for the line containing (line 53):

    if ( ‘Chilly’ == $theme->name || ‘SpiceBlue’ == $theme->name){

    then insert this line below line 53:

    //Alpha Color Control
    require( SPICEB_PLUGIN_DIR . ‘/inc/controls/customizer-alpha-color-picker/class-spicepress-customize-alpha-color-control.php’);

    so your file will look like:

    if ( ‘Chilly’ == $theme->name || ‘SpiceBlue’ == $theme->name){
    //Alpha Color Control
    require( SPICEB_PLUGIN_DIR . ‘/inc/controls/customizer-alpha-color-picker/class-spicepress-customize-alpha-color-control.php’);

    =========================================================
    Another older issue:

    Today was the second time my website was badly broken by this plugin, due to the fact that there is an error in the include section.. it wants to include a file that does not exist. therefore the site throws a 500 server error.

    I fixed this for the first time by renaming the file in order for it to be opened. Also added that to the support pages, but today just a repetition of moves. again an update and again with the bad code. I keep fixing this manually, but spicebox is not on auto update any longer.

    • This topic was modified 5 years, 4 months ago by jonghj.
    • This topic was modified 5 years, 3 months ago by jonghj.
    • This topic was modified 4 years, 7 months ago by jonghj.
  • The topic ‘Fixed another broken feature’ is closed to new replies.