<?php if ( ! defined('ABSPATH')) exit; // if direct access add_filter('wcps_layout_elements', 'wcps_layout_elements_wishlist_for_wc'); function wcps_layout_elements_wishlist_for_wc($layout_elements){ $layout_elements['wishlist_for_wc'] = array('name' =>__('WishList for WooCommerce','woocommerce-products-slider')); return $layout_elements; } add_action('wcps_layout_elements_option_wishlist_for_wc','wcps_layout_elements_option_wishlist_for_wc'); function wcps_layout_elements_option_wishlist_for_wc($parameters){ $settings_tabs_field = new settings_tabs_field(); $input_name = isset($parameters['input_name']) ? $parameters['input_name'] : '{input_name}'; $element_data = isset($parameters['element_data']) ? $parameters['element_data'] : array(); $element_index = isset($parameters['index']) ? $parameters['index'] : ''; $margin = isset($element_data['margin']) ? $element_data['margin'] : ''; ?> <div class="item"> <div class="element-title header "> <span class="remove" onclick="jQuery(this).parent().parent().remove()"><i class="fas fa-times"></i></span> <span class="sort"><i class="fas fa-sort"></i></span> <span class="expand"><?php echo __('WishList for WooCommerce','woocommerce-products-slider'); ?></span> </div> <div class="element-options options"> <?php $args = array( 'id' => 'margin', 'css_id' => $element_index.'_margin', 'parent' => $input_name.'[wishlist_for_wc]', 'title' => __('Margin','woocommerce-products-slider'), 'details' => __('Set margin.','woocommerce-products-slider'), 'type' => 'text', 'value' => $margin, 'default' => '', 'placeholder' => '5px 0', ); $settings_tabs_field->generate_field($args); ?> </div> </div> <?php } add_action('wcps_layout_element_wishlist_for_wc', 'wcps_layout_element_wishlist_for_wc', 10); function wcps_layout_element_wishlist_for_wc($args){ //echo '<pre>'.var_export($args, true).'</pre>'; $product_id = isset($args['product_id']) ? $args['product_id'] : ''; $elementData = isset($args['elementData']) ? $args['elementData'] : array(); $element_index = isset($args['element_index']) ? $args['element_index'] : ''; $element_class = !empty($element_index) ? 'element-wishlist_for_wc element-'.$element_index : 'element-wishlist_for_wc'; if ( class_exists( 'Alg_WC_Wish_List_Toggle_Btn' ) ) { $Alg_WC_Wish_List_Toggle_Btn = new Alg_WC_Wish_List_Toggle_Btn(); ?> <div class="<?php echo $element_class; ?>"><?php echo $Alg_WC_Wish_List_Toggle_Btn->show_default_btn(); ?></div> <?php } } add_action('wcps_layout_element_css_wishlist_for_wc', 'wcps_layout_element_css_wishlist_for_wc', 10); function wcps_layout_element_css_wishlist_for_wc($args){ $element_index = isset($args['element_index']) ? $args['element_index'] : ''; $elementData = isset($args['elementData']) ? $args['elementData'] : array(); $layout_id = isset($args['layout_id']) ? $args['layout_id'] : ''; $margin = isset($elementData['margin']) ? $elementData['margin'] : ''; //echo '<pre>'.var_export($layout_id, true).'</pre>'; ?> <style > .layout-<?php echo $layout_id; ?> .element-<?php echo $element_index; ?>{ <?php if(!empty($margin)): ?> margin: <?php echo $margin; ?>; <?php endif; ?> } </style> <?php }