public function settings_fields($fields)
 {
     $fields['general']['single_product'][] = array('id' => WCPS_DB . 'single_product_pos', 'type' => 'select', 'options' => $single_product_options, 'label' => __('Title Position', WCPS_TXT), 'desc' => __(' Where to show the subtitle ', WCPS_TXT), 'attr' => array('style' => 'width:50%', 'class' => 'wc-enhanced-select'));
     $fields['general']['single_product'][] = wc_ps_tags_pos_settings_arr('single_product_where');
     $fields['general']['single_product'][] = wc_ps_tags_settings_arr('single_product_tag');
     return $fields;
 }
 public function get_settings_fields()
 {
     $loop_product_area = array('' => __("Disable / Use Shortcode", WCPS_TXT), 'title' => __('Product Title', WCPS_TXT), 'qty' => __('Product Qty', WCPS_TXT));
     return array(wc_ps_tags_area_settings_arr($this->slug . '_pos', $loop_product_area), wc_ps_tags_pos_settings_arr($this->slug . '_where'), wc_ps_tags_settings_arr($this->slug . '_tag'));
 }
 public function get_settings_fields()
 {
     $loop_product_area = array('' => __("Disable / Use Shortcode", WCPS_TXT), 'title' => __('Product Title', WCPS_TXT), 'rating' => __('Product Rating', WCPS_TXT), 'price' => __('Product Price', WCPS_TXT));
     return array(wc_ps_tags_area_settings_arr('shop_page_pos', $loop_product_area), wc_ps_tags_pos_settings_arr('shop_page_where'), wc_ps_tags_settings_arr('shop_page_tag'));
 }
 public function get_settings_fields()
 {
     $single_product_options = array('' => __("Disable / Use Shortcode", WCPS_TXT), 'title' => __('Product Title', WCPS_TXT), 'rating' => __('Product Rating', WCPS_TXT), 'price' => __('Product Price', WCPS_TXT), 'excerpt' => __('Product Excerpt', WCPS_TXT), 'add_to_cart' => __('Product Add to cart', WCPS_TXT), 'meta' => __('Product Meta', WCPS_TXT));
     return array(wc_ps_tags_area_settings_arr('single_product_pos', $single_product_options), wc_ps_tags_pos_settings_arr('single_product_where'), wc_ps_tags_settings_arr('single_product_tag'));
 }