Backups Created:
/home/teltatz/public_html/wp-admin/admin-wolf.php
/home/teltatz/public_html/wp-content/edit-wolf.php
/home/teltatz/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: general.class.php
<?php /** * Admin settings class * * @package TInvWishlist\Admin * @subpackage Settings * @since 1.0.0 */ // If this file is called directly, abort. defined( 'ABSPATH' ) or exit; /** * Admin settings class */ class TInvWL_Admin_Settings_General extends TInvWL_Admin_BaseSection { /** * Priority for admin menu * * @var int */ public int $priority = 20; /** * This class * * @var TInvWL_Admin_Settings_General */ protected static ?self $_instance = null; /** * Get this class object * * @param string $plugin_name Plugin name. * @param string $plugin_version Plugin version. * * @return TInvWL_Admin_Settings_General */ public static function instance( string $plugin_name = TINVWL_PREFIX, string $plugin_version = TINVWL_FVERSION ): self { if ( is_null( self::$_instance ) ) { self::$_instance = new self( $plugin_name, $plugin_version ); } return self::$_instance; } /** * Constructor * * @param string $plugin_name Plugin name. * @param string $version Plugin version. */ public function __construct( string $plugin_name, string $version ) { $this->_name = $plugin_name; $this->_version = $version; parent::__construct( $plugin_name, $version ); add_filter( 'tinvwl_section_before', [ $this, 'premium_features' ], 9 ); } /** * Menu array * * @return array */ public function menu(): array { return [ 'title' => __( 'General Settings', 'ti-woocommerce-wishlist' ), 'method' => [ $this, '_print_' ], 'slug' => '', 'capability' => 'tinvwl_general_settings', ]; } /** * Get WP menus * * @return array */ public function get_wp_menus(): array { $menus = [ '' => __( 'None', 'ti-woocommerce-wishlist' ) ]; $get_menus = get_terms( 'nav_menu', [ 'hide_empty' => true ] ); foreach ( $get_menus as $menu ) { $menus[ $menu->term_id ] = $menu->name; } return $menus; } /** * Create sections for this settings * * @return array */ public function constructor_data(): array { $lists = get_pages( [ 'number' => 9999999 ] ); // @codingStandardsIgnoreLine WordPress.VIP.RestrictedFunctions.get_pages $page_list = [ '' => '' ]; $menus = $this->get_wp_menus(); foreach ( $lists as $list ) { $page_list[ $list->ID ] = $list->post_title; } $settings = array( array( 'id' => 'general', 'title' => __( 'General Settings', 'ti-woocommerce-wishlist' ), 'desc' => __( 'Wishlist page needs to be selected so the plugin knows where it is. This page should be created upon installation of the plugin, if not you will need to create it manually.', 'ti-woocommerce-wishlist' ), 'show_names' => true, 'fields' => array( array( 'type' => 'text', 'name' => 'default_title', 'text' => __( 'Default Wishlist Name', 'ti-woocommerce-wishlist' ), 'std' => 'Default wishlist', ), array( 'type' => 'select', 'name' => 'page_wishlist', 'text' => __( 'Wishlist Page', 'ti-woocommerce-wishlist' ), 'std' => '', 'options' => $page_list, 'validate' => FILTER_VALIDATE_INT, ), array( 'type' => 'checkboxonoff', 'name' => 'require_login', 'text' => __( 'Require Login', 'ti-woocommerce-wishlist' ), 'desc' => __( 'Disallows guests to use Wishlist functionality until they sign in.', 'ti-woocommerce-wishlist' ), 'std' => false, 'extra' => array( 'tiwl-show' => '.tiwl-general-redirect-require-login', ), ), array( 'type' => 'checkboxonoff', 'name' => 'redirect_require_login', 'text' => __( 'Redirect to Login Page', 'ti-woocommerce-wishlist' ), 'desc' => '<span class="tiwl-button-show-notice">' . __( 'If enabled, guests will be redirected to a login page once clicking the "Add to Wishlist" button or "Wishlist Products Counter" link. Otherwise, a popup with login required notice will appear.', 'ti-woocommerce-wishlist' ) . '</span>', 'std' => false, 'class' => 'tiwl-general-redirect-require-login', ), array( 'type' => 'checkboxonoff', 'name' => 'my_account_endpoint', 'text' => __( 'Setup wishlist page under WooCommerce My Account section', 'ti-woocommerce-wishlist' ), 'desc' => '<span class="tiwl-button-show-notice">' . __( 'This option will set up the wishlist page under WooCommerce My Account section and prevents all sharing features.', 'ti-woocommerce-wishlist' ) . '</span>', 'std' => false, 'extra' => array( 'tiwl-show' => '.tinwl-general-my-account-endpoint', 'tiwl-hide' => '.tinwl-general-my-account-link', ), ), array( 'type' => 'text', 'name' => 'my_account_endpoint_slug', 'text' => __( 'WooCommerce My Account Wishlist page slug', 'ti-woocommerce-wishlist' ), 'std' => 'wishlist', 'class' => 'tinwl-general-my-account-endpoint', ), array( 'type' => 'checkboxonoff', 'name' => 'link_in_myaccount', 'text' => __( 'Show Link to Wishlist in my account', 'ti-woocommerce-wishlist' ), 'std' => true, 'class' => 'tinwl-general-my-account-link', ), array( 'type' => 'checkboxonoff', 'name' => 'processing_autoremove', 'text' => __( 'Remove Product from Wishlist if added to cart', 'ti-woocommerce-wishlist' ), 'std' => true, 'extra' => array( 'tiwl-show' => '.tiwl-processing-autoremove-anyone' ), ), array( 'type' => 'checkboxonoff', 'name' => 'processing_autoremove_anyone', 'text' => __( 'Remove by anyone', 'ti-woocommerce-wishlist' ), 'std' => false, 'class' => 'tiwl-processing-autoremove-anyone', ), array( 'type' => 'checkboxonoff', 'name' => 'processing_redirect_checkout', 'text' => __( 'Redirect to the checkout page from Wishlist if added to cart', 'ti-woocommerce-wishlist' ), 'std' => false, ), array( 'type' => 'checkboxonoff', 'name' => 'simple_flow', 'text' => __( 'Remove product from Wishlist on the second click', 'ti-woocommerce-wishlist' ), 'std' => false, 'extra' => array( 'tiwl-show' => '.tiwl-general-simple-flow>td, .tiwl-button-simple-flow', 'tiwl-hide' => '.tiwl-general-simple-flow-hide>td', ), ), array( 'type' => 'checkboxonoff', 'name' => 'product_stats', 'text' => __( 'Show stats for each product', 'ti-woocommerce-wishlist' ), 'desc' => __( 'Show number of times each product added to wishlists across the site.', 'ti-woocommerce-wishlist' ), 'std' => false, 'class' => '', ), array( 'type' => 'number', 'name' => 'guests_timeout', 'text' => __( 'Days after which the guest wishlist will be deleted', 'ti-woocommerce-wishlist' ), 'std' => 30, 'extra' => array( 'step' => '1', 'min' => '1', ), 'desc' => __( "Guest's wishlists are automatically deleted after a defined period of days from the latest product addition.", 'ti-woocommerce-wishlist' ), ), array( 'type' => 'group', 'id' => 'show_notice', ), array( 'type' => 'checkboxonoff', 'name' => 'show_notice', 'text' => __( 'Show successful notice in popup', 'ti-woocommerce-wishlist' ), 'desc' => __( 'This option allows to show/hide a popup with successful or error notices after adding or removing products from a Wishlist.', 'ti-woocommerce-wishlist' ), 'std' => true, 'extra' => array( 'tiwl-show' => '.tiwl-button-show-notice', 'tiwl-hide' => '.tiwl-button-show-notice-warning-popup', ), ), array( 'type' => 'text', 'name' => 'text_browse', 'text' => __( '"View Wishlist" button Text', 'ti-woocommerce-wishlist' ), 'std' => 'View Wishlist', 'class' => 'tiwl-button-show-notice', ), array( 'type' => 'checkboxonoff', 'name' => 'redirect', 'text' => __( 'Redirect to Wishlist', 'ti-woocommerce-wishlist' ), 'desc' => __( 'If enabled, the user will be redirected to wishlist page after 5 sec from adding product to wishlist.', 'ti-woocommerce-wishlist' ), 'std' => true, 'class' => 'tiwl-button-show-notice', ), array( 'type' => 'text', 'name' => 'text_added_to', 'text' => __( '"Product added to Wishlist" Text', 'ti-woocommerce-wishlist' ), 'std' => '{product_name} added to {wishlist_title}', 'desc' => __( 'You can use next placeholder in this field to get current product name: <code>{product_name}</code>, <code>{product_sku}</code>, <code>{wishlist_title}</code>', 'ti-woocommerce-wishlist' ), 'class' => 'tiwl-button-show-notice', ), array( 'type' => 'text', 'name' => 'text_already_in', 'text' => __( '"Product already in Wishlist" Text', 'ti-woocommerce-wishlist' ), 'desc' => __( 'This notification will be shown if a user will try to add a product that is already on the wishlist. ', 'ti-woocommerce-wishlist' ) . __( 'You can use next placeholder in this field to get current product name: <code>{product_name}</code>, <code>{product_sku}</code>, <code>{wishlist_title}</code>', 'ti-woocommerce-wishlist' ), 'std' => '{product_name} already in {wishlist_title}', 'class' => 'tiwl-button-show-notice tiwl-general-simple-flow-hide', ), array( 'type' => 'text', 'name' => 'text_removed_from', 'text' => __( '"Product removed from Wishlist" Text', 'ti-woocommerce-wishlist' ), 'desc' => __( 'This notification will be shown once the product is removed from Wishlist on a single or catalog page.', 'ti-woocommerce-wishlist' ), 'std' => 'Product removed from Wishlist', 'class' => 'tiwl-button-show-notice tiwl-general-simple-flow', ), ), ), array( 'id' => 'permalinks', 'title' => __( 'Permalinks Settings', 'ti-woocommerce-wishlist' ), 'show_names' => false, 'fields' => array( array( 'type' => 'checkboxonoff', 'name' => 'force', 'text' => __( 'Force permalinks rewrite', 'ti-woocommerce-wishlist' ), 'desc' => __( 'This option should be enabled to avoid any issues with URL rewrites between other plugins and Wishlist', 'ti-woocommerce-wishlist' ), 'std' => false, ), ), ), array( 'id' => 'rename', 'title' => __( 'Rename wishlist Settings', 'ti-woocommerce-wishlist' ), 'show_names' => false, 'fields' => array( array( 'type' => 'checkboxonoff', 'name' => 'rename', 'text' => __( 'Rename wishlist word across the plugin', 'ti-woocommerce-wishlist' ), 'desc' => __( 'These options allow changing word <code>wishlist</code> across all plugin instance', 'ti-woocommerce-wishlist' ), 'std' => false, 'extra' => array( 'tiwl-show' => '.tiwl-rename-single, .tiwl-rename-plural' ), ), array( 'type' => 'text', 'name' => 'rename_single', 'text' => __( 'Single form', 'ti-woocommerce-wishlist' ), 'desc' => __( 'This option allows you to change a single form of the word. You need to write a new word in lowercase and the proper case will be applied automatically for all instances.', 'ti-woocommerce-wishlist' ), 'std' => '', 'class' => 'tiwl-rename-single', ), array( 'type' => 'text', 'name' => 'rename_plural', 'text' => __( 'Plural form', 'ti-woocommerce-wishlist' ), 'desc' => __( 'This option allows you to change a plural form of the word. Left it empty if you need to add just "s" suffix to the single form word that you set above.', 'ti-woocommerce-wishlist' ), 'std' => '', 'class' => 'tiwl-rename-plural', ), ), ), array( 'id' => 'page', 'title' => __( 'Wishlist Page Options', 'ti-woocommerce-wishlist' ), 'desc' => __( 'Coming soon', 'ti-woocommerce-wishlist' ), 'show_names' => true, 'style' => 'display:none;', 'fields' => array( array( 'type' => 'select', 'name' => 'wishlist', 'text' => __( 'My Wishlist', 'ti-woocommerce-wishlist' ), 'std' => '', 'options' => $page_list, 'validate' => FILTER_VALIDATE_INT, ), ), ), array( 'id' => 'processing', 'title' => __( 'Wishlist Processing Options', 'ti-woocommerce-wishlist' ), 'desc' => __( 'Coming soon', 'ti-woocommerce-wishlist' ), 'style' => 'display:none;', 'show_names' => true, 'fields' => array( array( 'type' => 'checkboxonoff', 'name' => 'autoremove', 'text' => __( 'Automatic removal', 'ti-woocommerce-wishlist' ), 'std' => true, 'extra' => array( 'tiwl-show' => '.tiwl-processing-autoremove' ), ), array( 'type' => 'select', 'name' => 'autoremove_status', 'text' => __( 'Remove condition', 'ti-woocommerce-wishlist' ), 'std' => 'tinvwl-addcart', 'options' => array( 'tinvwl-addcart' => __( 'Add to Cart', 'ti-woocommerce-wishlist' ), ), 'class' => 'tiwl-processing-autoremove', ), array( 'type' => 'checkboxonoff', 'name' => 'redirect_checkout', 'text' => __( 'Redirect to the checkout page from Wishlist if added to cart', 'ti-woocommerce-wishlist' ), 'std' => false, 'class' => 'tiwl-processing-redirect-checkout', ), array( 'type' => 'checkboxonoff', 'name' => 'autoremove_anyone', 'text' => __( 'Remove by anyone', 'ti-woocommerce-wishlist' ), 'std' => false, 'class' => 'tiwl-processing-autoremove', ), ), ), array( 'id' => 'add_to_wishlist', 'title' => __( 'Product page "Add to Wishlist" Button Settings', 'ti-woocommerce-wishlist' ), 'show_names' => true, 'fields' => array( array( 'type' => 'select', 'name' => 'position', 'text' => __( 'Button position', 'ti-woocommerce-wishlist' ), 'desc' => __( 'Add this shortcode <code>[ti_wishlists_addtowishlist]</code> anywhere on product page, if you have chosen custom position for product button. You will have to do this for each product.', 'ti-woocommerce-wishlist' ), 'std' => 'after', 'options' => array( 'after' => __( 'After "Add to Cart" button', 'ti-woocommerce-wishlist' ), 'before' => __( 'Before "Add to Cart" button', 'ti-woocommerce-wishlist' ), 'thumbnails' => __( 'After Thumbnails', 'ti-woocommerce-wishlist' ), 'summary' => __( 'After summary', 'ti-woocommerce-wishlist' ), 'shortcode' => __( 'Custom position with code', 'ti-woocommerce-wishlist' ), ), ), array( 'type' => 'text', 'name' => 'class', 'text' => __( 'Button custom CSS class', 'ti-woocommerce-wishlist' ), 'desc' => __( 'You can add custom CSS classes to button markup separated by spaces. Most of themes using <code>button</code> class for this type of buttons.', 'ti-woocommerce-wishlist' ), 'std' => '', 'extra' => array( 'placeholder' => 'button btn-primary', ), ), array( 'type' => 'select', 'name' => 'icon', 'text' => __( '"Add to Wishlist" Icon', 'ti-woocommerce-wishlist' ), 'desc' => __( 'You can choose from our predefined icons or upload your custom icon. Custom icon size is limited to 16x16 px.', 'ti-woocommerce-wishlist' ), 'std' => 'heart', 'options' => array( '' => __( 'None', 'ti-woocommerce-wishlist' ), 'heart' => __( 'Heart', 'ti-woocommerce-wishlist' ), 'heart-plus' => __( 'Heart+', 'ti-woocommerce-wishlist' ), 'custom' => __( 'Custom', 'ti-woocommerce-wishlist' ), ), 'extra' => array( 'class' => 'tiwl-button-icon', 'tiwl-show' => '.tiwl-button-icon-custom', 'tiwl-hide' => '.tiwl-button-icon-style', 'tiwl-value' => 'custom', ), ), array( 'type' => 'uploadfile', 'name' => 'icon_upload', 'std' => '', 'text' => __( 'Default state', 'ti-woocommerce-wishlist' ), 'class' => 'tiwl-button-icon-custom', 'extra' => array( 'button' => array( 'value' => __( 'Upload', 'ti-woocommerce-wishlist' ), ), 'type' => array( 'image' ), ), ), array( 'type' => 'uploadfile', 'name' => 'icon_upload_added', 'std' => '', 'text' => __( 'Already added state', 'ti-woocommerce-wishlist' ), 'class' => 'tiwl-button-icon-custom', 'extra' => array( 'button' => array( 'value' => __( 'Upload', 'ti-woocommerce-wishlist' ), ), 'type' => array( 'image' ), ), ), array( 'type' => 'select', 'name' => 'icon_style', 'std' => '', 'text' => __( '"Add to Wishlist" Icon Color', 'ti-woocommerce-wishlist' ), 'options' => array( '' => __( 'Use font color', 'ti-woocommerce-wishlist' ), 'black' => __( 'Black', 'ti-woocommerce-wishlist' ), 'white' => __( 'White', 'ti-woocommerce-wishlist' ), ), 'class' => 'tiwl-button-icon-style', ), array( 'type' => 'checkboxonoff', 'name' => 'show_preloader', 'text' => __( 'Show preloader', 'ti-woocommerce-wishlist' ), 'desc' => __( 'If enabled, applies animation for the button icon until product adding or removing processed. (Usable for servers with slow connection mostly.)', 'ti-woocommerce-wishlist' ), 'std' => false, ), array( 'type' => 'checkboxonoff', 'name' => 'show_text', 'text' => __( 'Show button text', 'ti-woocommerce-wishlist' ), 'std' => true, 'extra' => array( 'tiwl-show' => '.tiwl-button-text', ), ), array( 'type' => 'group', 'id' => 'show_text_single', 'class' => 'tiwl-button-text', 'style' => 'border-top: 0px; padding-top: 0px;', ), array( 'type' => 'text', 'name' => 'text', 'text' => __( '"Add to Wishlist" button Text', 'ti-woocommerce-wishlist' ), 'std' => 'Add to Wishlist', ), array( 'type' => 'checkboxonoff', 'name' => 'already_on', 'text' => __( 'Show "Already In Wishlist" button Text', 'ti-woocommerce-wishlist' ), 'std' => false, 'extra' => array( 'tiwl-show' => '.tiwl-button-already-on', ), 'class' => 'tiwl-general-simple-flow-hide', ), array( 'type' => 'text', 'name' => 'text_already_on', 'text' => __( '"Already In Wishlist" button Text', 'ti-woocommerce-wishlist' ), 'std' => 'Already In Wishlist', 'class' => 'tiwl-button-already-on tiwl-general-simple-flow-hide', ), array( 'type' => 'text', 'name' => 'text_remove', 'text' => __( '"Remove from Wishlist" Button Text', 'ti-woocommerce-wishlist' ), 'std' => 'Remove from Wishlist', 'class' => 'tiwl-button-simple-flow', ), ), ), array( 'id' => 'add_to_wishlist_catalog', 'title' => __( 'Product listing Button Settings', 'ti-woocommerce-wishlist' ), 'desc' => __( 'These are separate settings for the "Add to Wishlist" button on a product listing (Shop page, categories, etc.). You can also adjust button and text colors, size, etc. in a <code>TI Wishlist > Style Options.</code>', 'ti-woocommerce-wishlist' ), 'show_names' => true, 'fields' => array( array( 'type' => 'checkboxonoff', 'name' => 'show_in_loop', 'text' => __( 'Show in Product Listing', 'ti-woocommerce-wishlist' ), 'std' => true, 'extra' => array( 'tiwl-show' => '.tiwl-buttoncat-button', ), ), array( 'type' => 'group', 'id' => 'add_to_wishlist_catalog', 'class' => 'tiwl-buttoncat-button', 'style' => 'border-top: 0px; padding-top: 0px;', ), array( 'type' => 'select', 'name' => 'position', 'text' => __( 'Button position', 'ti-woocommerce-wishlist' ), 'std' => 'after', 'options' => array( 'after' => __( 'After "Add to Cart" button', 'ti-woocommerce-wishlist' ), 'before' => __( 'Before "Add to Cart" button', 'ti-woocommerce-wishlist' ), 'above_thumb' => __( 'Above Thumbnail', 'ti-woocommerce-wishlist' ), 'shortcode' => __( 'Custom position with code', 'ti-woocommerce-wishlist' ), ), 'desc' => __( 'Note: if "Custom position with code" option is applied, the "Add to Wishlist" button should be added into template using <code>do_shortcode()</code> function like this:<br /><code>do_shortcode("[ti_wishlists_addtowishlist loop=yes]")</code>', 'ti-woocommerce-wishlist' ), ), array( 'type' => 'text', 'name' => 'class', 'text' => __( 'Button custom CSS class', 'ti-woocommerce-wishlist' ), 'desc' => __( 'You can add custom CSS classes to button markup separated by spaces. Most of themes using <code>button</code> class for this type of buttons.', 'ti-woocommerce-wishlist' ), 'std' => '', 'extra' => array( 'placeholder' => 'button btn-primary', ), ), array( 'type' => 'select', 'name' => 'icon', 'text' => __( '"Add to Wishlist" Icon', 'ti-woocommerce-wishlist' ), 'std' => 'heart', 'options' => array( '' => __( 'None', 'ti-woocommerce-wishlist' ), 'heart' => __( 'Heart', 'ti-woocommerce-wishlist' ), 'heart-plus' => __( 'Heart+', 'ti-woocommerce-wishlist' ), 'custom' => __( 'Custom', 'ti-woocommerce-wishlist' ), ), 'extra' => array( 'tiwl-show' => '.tiwl-buttoncat-icon-custom', 'tiwl-hide' => '.tiwl-buttoncat-icon-style', 'tiwl-value' => 'custom', ), ), array( 'type' => 'uploadfile', 'name' => 'icon_upload', 'std' => '', 'text' => __( 'Default state', 'ti-woocommerce-wishlist' ), 'class' => 'tiwl-buttoncat-icon-custom', 'extra' => array( 'button' => array( 'value' => __( 'Upload', 'ti-woocommerce-wishlist' ), ), 'type' => array( 'image' ), ), ), array( 'type' => 'uploadfile', 'name' => 'icon_upload_added', 'std' => '', 'text' => __( 'Already added state', 'ti-woocommerce-wishlist' ), 'class' => 'tiwl-buttoncat-icon-custom', 'extra' => array( 'button' => array( 'value' => __( 'Upload', 'ti-woocommerce-wishlist' ), ), 'type' => array( 'image' ), ), ), array( 'type' => 'select', 'name' => 'icon_style', 'std' => '', 'text' => __( '"Add to Wishlist" Icon Color', 'ti-woocommerce-wishlist' ), 'options' => array( '' => __( 'Use font color', 'ti-woocommerce-wishlist' ), 'black' => __( 'Black', 'ti-woocommerce-wishlist' ), 'white' => __( 'White', 'ti-woocommerce-wishlist' ), ), 'class' => 'tiwl-buttoncat-icon-style', ), array( 'type' => 'checkboxonoff', 'name' => 'show_preloader', 'text' => __( 'Show preloader', 'ti-woocommerce-wishlist' ), 'desc' => __( 'If enabled, applies animation for the button icon until product adding or removing processed. (Usable for servers with slow connection mostly.)', 'ti-woocommerce-wishlist' ), 'std' => false, ), array( 'type' => 'checkboxonoff', 'name' => 'show_text', 'text' => __( 'Show button text', 'ti-woocommerce-wishlist' ), 'std' => true, 'extra' => array( 'tiwl-show' => '.tiwl-button-text-catalog', ), ), array( 'type' => 'group', 'id' => 'show_text_single', 'class' => 'tiwl-button-text-catalog', 'style' => 'border-top: 0px; padding-top: 0px;', ), array( 'type' => 'text', 'name' => 'text', 'text' => __( '"Add to Wishlist" Text', 'ti-woocommerce-wishlist' ), 'std' => 'Add to Wishlist', ), array( 'type' => 'checkboxonoff', 'name' => 'already_on', 'text' => __( 'Show "Already In Wishlist" button Text', 'ti-woocommerce-wishlist' ), 'std' => false, 'extra' => array( 'tiwl-show' => '.tiwl-button-already-on-catalog', ), 'class' => 'tiwl-general-simple-flow-hide', ), array( 'type' => 'text', 'name' => 'text_already_on', 'text' => __( '"Already In Wishlist" button Text', 'ti-woocommerce-wishlist' ), 'std' => 'Already In Wishlist', 'class' => 'tiwl-button-already-on-catalog tiwl-general-simple-flow-hide', ), array( 'type' => 'text', 'name' => 'text_remove', 'text' => __( '"Remove from Wishlist" Button Text', 'ti-woocommerce-wishlist' ), 'std' => 'Remove from Wishlist', 'class' => 'tiwl-button-simple-flow', ), ), ), array( 'id' => 'product_table', 'title' => __( 'Wishlist Product Settings', 'ti-woocommerce-wishlist' ), 'desc' => __( 'Following options allows you to choose what information/functionality to show/enable in wishlist table on the wishlist page.', 'ti-woocommerce-wishlist' ), 'show_names' => true, 'fields' => array( array( 'type' => 'checkboxonoff', 'name' => 'add_to_cart', 'text' => __( 'Show "Add to Cart" button', 'ti-woocommerce-wishlist' ), 'std' => true, ), array( 'type' => 'text', 'name' => 'text_add_to_cart', 'text' => __( '"Add to Cart" Text', 'ti-woocommerce-wishlist' ), 'std' => 'Add to Cart', 'class' => 'tiwl-table-action-addcart', ), array( 'type' => 'checkboxonoff', 'name' => 'colm_price', 'text' => __( 'Show Unit price', 'ti-woocommerce-wishlist' ), 'std' => true, ), array( 'type' => 'checkboxonoff', 'name' => 'colm_stock', 'text' => __( 'Show Stock status', 'ti-woocommerce-wishlist' ), 'std' => true, ), array( 'type' => 'checkboxonoff', 'name' => 'colm_date', 'text' => __( 'Show Date of addition', 'ti-woocommerce-wishlist' ), 'std' => true, ), ), ), array( 'id' => 'table', 'title' => __( 'Wishlist Table Settings', 'ti-woocommerce-wishlist' ), 'desc' => __( 'Following options will help user to manage and add products to cart from wishlist table in bulk.', 'ti-woocommerce-wishlist' ), 'show_names' => true, 'fields' => array( array( 'type' => 'number', 'name' => 'per_page', 'text' => __( 'Products per page', 'ti-woocommerce-wishlist' ), 'std' => 10, 'extra' => array( 'step' => '1', 'min' => '1', ), ), array( 'type' => 'checkboxonoff', 'name' => 'colm_checkbox', 'text' => __( 'Show Checkboxes', 'ti-woocommerce-wishlist' ), 'std' => true, 'extra' => array( 'tiwl-show' => '.tiwl-table-cb-button' ), ), array( 'type' => 'group', 'id' => 'cb_button', 'class' => 'tiwl-table-cb-button', ), array( 'type' => 'checkboxonoff', 'name' => 'colm_actions', 'text' => __( 'Show Actions button', 'ti-woocommerce-wishlist' ), 'desc' => __( 'Bulk actions drop-down at the bottom of wishlist table', 'ti-woocommerce-wishlist' ), 'std' => true, ), array( 'type' => 'checkboxonoff', 'name' => 'add_select_to_cart', 'text' => __( 'Show "Add Selected to Cart" button', 'ti-woocommerce-wishlist' ), 'std' => true, 'extra' => array( 'tiwl-show' => '.tiwl-table-addcart-sel' ), ), array( 'type' => 'text', 'name' => 'text_add_select_to_cart', 'text' => __( '"Add Selected to Cart" Button Text', 'ti-woocommerce-wishlist' ), 'std' => 'Add Selected to Cart', 'class' => 'tiwl-table-addcart-sel', ), array( 'type' => 'group', 'id' => '_button', ), array( 'type' => 'checkboxonoff', 'name' => 'add_all_to_cart', 'text' => __( 'Show "Add All to Cart" button', 'ti-woocommerce-wishlist' ), 'std' => true, 'extra' => array( 'tiwl-show' => '.tiwl-table-addcart-all' ), ), array( 'type' => 'text', 'name' => 'text_add_all_to_cart', 'text' => __( '"Add All to Cart" Button Text', 'ti-woocommerce-wishlist' ), 'std' => 'Add All to Cart', 'class' => 'tiwl-table-addcart-all', ), array( 'type' => 'checkboxonoff', 'name' => 'hide_popup', 'text' => __( 'Hide popup for wishlist products management actions', 'ti-woocommerce-wishlist' ), 'desc' => __( 'This option allows hide/show a popup after any action is processed with wishlist products on the wishlist page.', 'ti-woocommerce-wishlist' ), 'std' => false, ), ), ), array( 'id' => 'social', 'show_names' => true, 'fields' => array( array( 'type' => 'group', 'id' => 'social', 'desc' => __( 'Following options enable/disable Social share icons below wishlist table on the wishlist page. Wishlist owner can easily share their wishlists using this button on social networks. Wishlist privacy should be set to public or shared status, private wishlists can\'t be shared.', 'ti-woocommerce-wishlist' ), 'class' => 'tinvwl-info-top', ), array( 'type' => 'html', 'name' => 'social', 'text' => __( 'Social Networks Sharing Options', 'ti-woocommerce-wishlist' ), 'class' => 'tinvwl-header-row tinvwl-line-border', ), array( 'type' => 'checkboxonoff', 'name' => 'facebook', 'text' => __( 'Show "Facebook" Button', 'ti-woocommerce-wishlist' ), 'std' => true, ), array( 'type' => 'checkboxonoff', 'name' => 'twitter', 'text' => __( 'Show "Twitter" Button', 'ti-woocommerce-wishlist' ), 'std' => true, ), array( 'type' => 'checkboxonoff', 'name' => 'pinterest', 'text' => __( 'Show "Pinterest" Button', 'ti-woocommerce-wishlist' ), 'std' => true, ), array( 'type' => 'checkboxonoff', 'name' => 'whatsapp', 'text' => __( 'Show "WhatsApp" Button', 'ti-woocommerce-wishlist' ), 'std' => true, ), array( 'type' => 'checkboxonoff', 'name' => 'clipboard', 'text' => __( 'Show "Copy to clipboard" Button', 'ti-woocommerce-wishlist' ), 'std' => true, ), array( 'type' => 'checkboxonoff', 'name' => 'email', 'text' => __( 'Show "Share by Email" Button', 'ti-woocommerce-wishlist' ), 'std' => true, ), array( 'type' => 'text', 'name' => 'share_on', 'text' => __( '"Share on" Text', 'ti-woocommerce-wishlist' ), 'std' => 'Share on', ), array( 'type' => 'select', 'name' => 'icon_style', 'text' => __( 'Social Icons Color', 'ti-woocommerce-wishlist' ), 'std' => '', 'options' => array( '' => __( 'Use font color', 'ti-woocommerce-wishlist' ), 'dark' => __( 'Dark', 'ti-woocommerce-wishlist' ), 'white' => __( 'White', 'ti-woocommerce-wishlist' ), ), 'validate' => FILTER_DEFAULT, ), ), ), array( 'id' => 'topline', 'title' => __( 'Wishlist Product Counter', 'ti-woocommerce-wishlist' ), 'desc' => sprintf( __( 'Add this shortcode <code>[ti_wishlist_products_counter]</code> anywhere into a page content to show Wishlist Counter.<br/><br/>It can be also added as a widget <code>Wishlist Products Counter</code> under the <a href="%s">Appearance -> Widgets</a> section.', 'ti-woocommerce-wishlist' ), esc_url( admin_url( 'widgets.php' ) ) ), 'show_names' => true, 'fields' => array( array( 'type' => 'select', 'name' => 'icon', 'text' => __( '"Wishlist" Counter Icon', 'ti-woocommerce-wishlist' ), 'std' => 'heart', 'options' => array( '' => __( 'None', 'ti-woocommerce-wishlist' ), 'heart' => __( 'Heart', 'ti-woocommerce-wishlist' ), 'heart-plus' => __( 'Heart+', 'ti-woocommerce-wishlist' ), 'custom' => __( 'Custom', 'ti-woocommerce-wishlist' ), ), 'desc' => __( 'You can choose from our predefined icons or upload your custom icon. Custom icon size is limited to 16x16 px.', 'ti-woocommerce-wishlist' ), 'extra' => array( 'tiwl-show' => '.tiwl-dropdown-icon-custom', 'tiwl-hide' => '.tiwl-dropdown-icon-style', 'tiwl-value' => 'custom', ), ), array( 'type' => 'uploadfile', 'name' => 'icon_upload', 'std' => '', 'text' => ' ', 'class' => 'tiwl-dropdown-icon-custom', 'extra' => array( 'button' => array( 'value' => __( 'Upload', 'ti-woocommerce-wishlist' ), ), 'type' => array( 'image' ), ), ), array( 'type' => 'select', 'name' => 'icon_style', 'std' => '', 'text' => __( '"Wishlist" Counter Icon Color', 'ti-woocommerce-wishlist' ), 'options' => array( '' => __( 'Use font color', 'ti-woocommerce-wishlist' ), 'black' => __( 'Black', 'ti-woocommerce-wishlist' ), 'white' => __( 'White', 'ti-woocommerce-wishlist' ), ), 'class' => 'tiwl-dropdown-icon-style', ), array( 'type' => 'checkboxonoff', 'name' => 'show_text', 'text' => __( 'Show "Wishlist" Counter Text', 'ti-woocommerce-wishlist' ), 'std' => true, 'extra' => array( 'tiwl-show' => '.tiwl-dropdown-text', ), ), array( 'type' => 'text', 'name' => 'text', 'text' => __( '"Wishlist" Counter Text', 'ti-woocommerce-wishlist' ), 'std' => __( 'Wishlist - ', 'ti-woocommerce-wishlist' ), 'class' => 'tiwl-dropdown-text', ), array( 'type' => 'multiselect', 'name' => 'menu', 'text' => __( 'Add counter to menu', 'ti-woocommerce-wishlist' ), 'options' => $menus, 'desc' => __( 'You can add a wishlist products counter as an item to the selected menu.', 'ti-woocommerce-wishlist' ), 'extra' => array( 'tiwl-value' => '0', 'tiwl-hide' => '.tiwl-menu-position', ), ), array( 'type' => 'number', 'name' => 'menu_order', 'text' => __( 'Counter position (Menu item order)', 'ti-woocommerce-wishlist' ), 'desc' => __( 'Allows you to add the wishlist counter as a menu item and set its position.', 'ti-woocommerce-wishlist' ), 'std' => 100, 'class' => 'tiwl-menu-position', 'extra' => array( 'step' => '1', 'min' => '1', ), ), array( 'type' => 'checkboxonoff', 'name' => 'show_counter', 'text' => __( 'Show number of products in counter', 'ti-woocommerce-wishlist' ), 'std' => true, 'extra' => array( 'tiwl-show' => '.tiwl-zero-counter', ), ), array( 'type' => 'checkboxonoff', 'name' => 'hide_zero_counter', 'text' => __( 'Hide zero value', 'ti-woocommerce-wishlist' ), 'desc' => __( 'Do not show the "0" value in a counter if the wishlist is empty.', 'ti-woocommerce-wishlist' ), 'class' => 'tiwl-zero-counter', 'std' => false, ), ), ), ); $settings[] = array( 'id' => 'uninstall', 'title' => __( 'Plugin Data Settings', 'ti-woocommerce-wishlist' ), 'show_names' => true, 'fields' => array( array( 'type' => 'checkboxonoff', 'name' => 'delete_data', 'text' => __( 'Erase All Data on Uninstall', 'ti-woocommerce-wishlist' ), 'std' => false, 'desc' => __( 'This option will remove all plugin-related data from your database when the plugin is uninstalled. Ideal for keeping your database clean, but irreversible – consider backing up first', 'ti-woocommerce-wishlist' ), ), ), ); $settings[] = array( 'id' => 'chat', 'title' => __( 'Support Chat Settings', 'ti-woocommerce-wishlist' ), 'desc' => __( 'Enable the support chat to get the most from our service and get answers to your questions promptly. We optimized the support process to get the required details from your current setup to solve your issues faster. Dedicated to your Care.', 'ti-woocommerce-wishlist' ), 'show_names' => true, 'fields' => array( array( 'type' => 'checkboxonoff', 'name' => 'enabled', 'text' => __( 'Enable support chat', 'ti-woocommerce-wishlist' ), 'std' => false, ), ), ); // Buttons. $settings[] = array( 'id' => 'save_buttons', 'class' => 'only-button', 'noform' => true, 'fields' => array( array( 'type' => 'button_submit', 'name' => 'setting_save', 'std' => '<span><i class="ftinvwl ftinvwl-check"></i></span>' . __( 'Save Settings', 'ti-woocommerce-wishlist' ), 'extra' => array( 'class' => 'tinvwl-btn split status-btn-ok' ), ), array( 'type' => 'button_submit', 'name' => 'setting_reset', 'std' => '<span><i class="ftinvwl ftinvwl-times"></i></span>' . __( 'Reset', 'ti-woocommerce-wishlist' ), 'extra' => array( 'class' => 'tinvwl-btn split status-btn-ok tinvwl-confirm-reset' ), ), array( 'type' => 'button_submit_quick', 'name' => 'setting_save_quick', 'std' => '<span><i class="ftinvwl ftinvwl-floppy-o"></i></span>' . __( 'Save', 'ti-woocommerce-wishlist' ), ), ), ); return $settings; } /** * Load value from database * * @param array $sections Sections array. * * @return array */ public function constructor_load( array $sections ): array { $data = parent::constructor_load( $sections ); $data['general']['page_wishlist'] = $data['page']['wishlist']; $data['general']['processing_autoremove'] = $data['processing']['autoremove']; $data['general']['processing_autoremove_anyone'] = $data['processing']['autoremove_anyone']; $data['general']['processing_redirect_checkout'] = $data['processing']['redirect_checkout']; return $data; } /** * Save value to database and flush rewrite. * * @param array $data Post section data. */ public function constructor_save( array $data ): void { parent::constructor_save( $data ); if ( empty( $data ) || ! is_array( $data ) ) { return; } tinv_update_option( 'page', 'wishlist', $data['general']['page_wishlist'] ); tinv_update_option( 'processing', 'autoremove', $data['general']['processing_autoremove'] ); tinv_update_option( 'processing', 'autoremove_anyone', $data['general']['processing_autoremove_anyone'] ); tinv_update_option( 'processing', 'redirect_checkout', $data['general']['processing_redirect_checkout'] ); tinv_update_option( 'processing', 'autoremove_status', 'tinvwl-addcart' ); if ( filter_input( INPUT_POST, 'save_buttons-setting_reset' ) ) { foreach ( array_keys( $data ) as $key ) { if ( $key != 'page' ) { $data[ $key ] = array(); } } parent::constructor_save( $data ); } delete_option( 'rewrite_rules' ); } /** * Show Premium Features sections */ public function premium_features(): void { global $current_screen; if ( is_object( $current_screen ) && 'toplevel_page_tinvwl' === $current_screen->id ) { TInvWL_View::view( 'premium-features' ); } } }