Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
lynchestinegroup.com
/
wp-content
/
themes
/
koncrete
/
inc
/
options
/
Editing: woocommerce.php
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.0 */ namespace radiustheme\Koncrete; use \Redux; $opt_name = Constants::$theme_options; if ( class_exists( 'WooCommerce' ) ) { // Woocommerce Settings Redux::setSection( $opt_name, array( 'title' => esc_html__( 'WooCommerce', 'koncrete' ), 'id' => 'woo_Settings_section', 'heading' => '', 'icon' => 'el el-shopping-cart', 'fields' => array( array( 'id' => 'wc_sec_general', 'type' => 'section', 'title' => esc_html__( 'General', 'koncrete' ), 'indent' => true, ), array( 'id' => 'wc_num_product', 'type' => 'text', 'title' => esc_html__( 'Number of Products Per Page', 'koncrete' ), 'default' => '9', ), array( 'id' => 'wc_wishlist_icon', 'type' => 'switch', 'title' => esc_html__( 'Product Add to Wishlist Icon', 'koncrete' ), 'on' => esc_html__( 'Enabled', 'koncrete' ), 'off' => esc_html__( 'Disabled', 'koncrete' ), 'default' => true, ), array( 'id' => 'wc_quickview_icon', 'type' => 'switch', 'title' => esc_html__( 'Product Quickview Icon', 'koncrete' ), 'on' => esc_html__( 'Enabled', 'koncrete' ), 'off' => esc_html__( 'Disabled', 'koncrete' ), 'default' => true, ), array( 'id' => 'wc_sec_product', 'type' => 'section', 'title' => esc_html__( 'Product Single Page', 'koncrete' ), 'indent' => true, ), array( 'id' => 'wc_show_excerpt', 'type' => 'switch', 'title' => esc_html__( "Show excerpt when short description doesn't exist", 'koncrete' ), 'on' => esc_html__( 'Enabled', 'koncrete' ), 'off' => esc_html__( 'Disabled', 'koncrete' ), 'default' => true, ), array( 'id' => 'wc_cats', 'type' => 'switch', 'title' => esc_html__( 'Categories', 'koncrete' ), 'on' => esc_html__( 'Show', 'koncrete' ), 'off' => esc_html__( 'Hide', 'koncrete' ), 'default' => true, ), array( 'id' => 'wc_tags', 'type' => 'switch', 'title' => esc_html__( 'Tags', 'koncrete' ), 'on' => esc_html__( 'Show', 'koncrete' ), 'off' => esc_html__( 'Hide', 'koncrete' ), 'default' => true, ), array( 'id' => 'wc_related', 'type' => 'switch', 'title' => esc_html__( 'Related Products', 'koncrete' ), 'on' => esc_html__( 'Show', 'koncrete' ), 'off' => esc_html__( 'Hide', 'koncrete' ), 'default' => true, ), array( 'id' => 'wc_description', 'type' => 'switch', 'title' => esc_html__( 'Description Tab', 'koncrete' ), 'on' => esc_html__( 'Show', 'koncrete' ), 'off' => esc_html__( 'Hide', 'koncrete' ), 'default' => true, ), array( 'id' => 'wc_reviews', 'type' => 'switch', 'title' => esc_html__( 'Reviews Tab', 'koncrete' ), 'on' => esc_html__( 'Show', 'koncrete' ), 'off' => esc_html__( 'Hide', 'koncrete' ), 'default' => true, ), array( 'id' => 'wc_additional_info', 'type' => 'switch', 'title' => esc_html__( 'Additional Information Tab', 'koncrete' ), 'on' => esc_html__( 'Show', 'koncrete' ), 'off' => esc_html__( 'Hide', 'koncrete' ), 'default' => true, ), array( 'id' => 'wc_sec_cart', 'type' => 'section', 'title' => esc_html__( 'Cart Page', 'koncrete' ), 'indent' => true, ), array( 'id' => 'wc_cross_sell', 'type' => 'switch', 'title' => esc_html__( 'Cross Sell Products', 'koncrete' ), 'on' => esc_html__( 'Show', 'koncrete' ), 'off' => esc_html__( 'Hide', 'koncrete' ), 'default' => true, ), ) ) ); }
Save
Cancel