Good catch… I wasn’t using that area.
This seems to work…
// reset default values for easing-slider plugin
add_filter('easingslider_metadata_defaults', your_set_easing_slider_defaults);
function your_set_easing_slider_defaults() {
// Our array of meta default data
$metadata_defaults = array(
'slides' => array(),
'general' => (object) array(
'randomize' => false
),
'dimensions' => (object) array(
'width' => 800,
'height' => 600,
'responsive' => true,
'full_width' => false,
'image_resizing' => false,
'keep_ratio' => true,
'background_images' => false
),
'transitions' => (object) array(
'effect' => 'fade',
'duration' => 400
),
'navigation' => (object) array(
'arrows' => true,
'arrows_hover' => false,
'arrows_position' => 'inside',
'pagination' => true,
'pagination_hover' => false,
'pagination_position' => 'outside',
'pagination_location' => 'bottom-center'
),
'playback' => (object) array(
'enabled' => false,
'pause' => 4000
),
'customizations' => (object) array(
'arrows' => (object) array(
'next' => "{$plugin_url}/nav-arrow-next.png",
'prev' => "{$plugin_url}/nav-arrow-prev.png",
'width' => 30,
'height' => 30
),
'pagination' => (object) array(
'inactive' => "{$plugin_url}/nav-icon-inactive.png",
'active' => "{$plugin_url}/nav-icon-active.png",
'width' => 15,
'height' => 15
),
'border' => (object) array(
'color' => '#000000',
'width' => 0,
'radius' => 0
),
'shadow' => (object) array(
'enabled' => false,
'image' => "{$plugin_url}/shadow.png"
)
)
);
return $metadata_defaults;
}
Notice the array for “customizations” added.