'small', 'swatchCustomSize' => '50', 'buttonSize' => 'small', 'pictureSize' => 'thumbnail', 'label' => 'show', 'limit' => 'hide', 'numberSwatches' => 3, 'numberButton' => 3, 'actionPlus' => 'none', 'collectionShowHideOptions' => 'show', 'collectionShowStyle' => 'cross', 'collectionHideStyle' => 'automatic', ); } return get_option( self::COLLECTION_SETTINGS_OPTION_NAME, $default_settings ); } public static function get_swatch_customize_settings() { $default_settings = array( 'borderActiveColor' => '#181818', 'borderNormalColor' => '#F5F5F5', 'imagePosition' => 'fit', 'imageSize' => 'thumbnail', 'swatchSize' => 'medium', 'swatchCustomSize' => '50', 'swatchStyle' => 'circle', 'swatchTooltip' => 'disable', 'tickSelected' => 'disable', 'swatchDesign' => 'design_3', 'swatchTooltipAnimation' => false, 'swatchTooltipArrow' => false, 'swatchTooltipBoxShadow' => false, 'swatchTooltipImage' => false, 'clearButtonShowHideOptions' => 'show', 'hideClearButtonOptions' => 'all', ); return get_option( self::SWATCH_SETTINGS_OPTION_NAME, $default_settings ); } public static function get_button_customize_settings() { $default_settings = array( 'borderActiveColor' => '#181818', 'borderHoverColor' => '#181818', 'borderNormalColor' => '#d4d4d4', 'borderWidth' => '1px', 'borderRadius' => '4px', 'buttonActiveColor' => '#181818', 'buttonHoverColor' => '#ffffff', 'buttonNormalColor' => '#ffffff', 'textActiveColor' => '#ffffff', 'textHoverColor' => '#181818', 'textNormalColor' => '#181818', 'buttonSize' => 'medium', ); return get_option( self::BUTTON_SETTINGS_OPTION_NAME, $default_settings ); } public static function get_sold_out_customize_settings() { $default_settings = array( 'soldOutShowHideOptions' => 'show', 'soldOutShowStyle' => 'cross', 'soldOutHideStyle' => 'automatic', ); return get_option( self::SOLD_OUT_SETTINGS_OPTION_NAME, $default_settings ); } }