Could you please pint me to the file for default settings for autorotation on portfolio items. I would like to change the setting for Autorotation active from "no" to "yes" in the defaults.
thanks...jay
Could you please pint me to the file for default settings for autorotation on portfolio items. I would like to change the setting for Autorotation active from "no" to "yes" in the defaults.
thanks...jay
Open up eunoia\includes\admin\register-admin-metabox.php and replace:
array(
"name" => "Autorotation active?",
"desc" => "Check if the slideshow should rotate by default",
"id" => "_slideshow_autoplay",
"type" => "select",
"std" => "false",
"class" => "av_2columns av_col_1",
"no_first" => true,
"slug" => "slideshow_meta",
"subtype" => array('yes'=>'true','no'=>'false')),
with:
array(
"name" => "Autorotation active?",
"desc" => "Check if the slideshow should rotate by default",
"id" => "_slideshow_autoplay",
"type" => "select",
"std" => "true",
"class" => "av_2columns av_col_1",
"no_first" => true,
"slug" => "slideshow_meta",
"subtype" => array('yes'=>'true','no'=>'false')),Thank you. worked like a charm. jay
This topic has been closed to new replies.