<?php
if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}
/*****************************************************************************************************************************************************
******************************************************************************************************************************************************

									Theme Product Featured Style Options
																		
*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
if( ! function_exists( 'nc_theme_product_featured_options' ) ) {
//add_filter('nc_theme_options', 'nc_theme_product_featured_options' );
function nc_theme_product_featured_options($option=[]) {
	if( function_exists( 'vb_button_normal_style_options' ) ) {	
	
 	$featured_style =vb_button_normal_style_options([],true,'product_featured_', __('Product Featured Style','nekto-core'),__('Products Style','nekto-core'));
 
	unset($featured_style['product_featured_style_heading']); 
	unset($featured_style['product_featured_align']); 
	unset($featured_style['product_featured_between']);  
	unset($featured_style['product_featured_icon_color']);  
	unset($featured_style['product_featured_icon_position']);  
	unset($featured_style['product_featured_icon_space']);  
	unset($featured_style['product_featured_icon_size']);  
	unset($featured_style['product_featured_shadow']);  
	unset($featured_style['product_featured_border']);  
	}
 		
		
     	
	$option=array_replace($option,$featured_style);
 	 
	return $option; 
}
}