Server IP : 170.150.155.74 / Your IP : 3.147.65.146 Web Server : Apache/2.4.53 (Debian) System : Linux b22bf132354b 5.4.0-162-generic #179-Ubuntu SMP Mon Aug 14 08:51:31 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/themes/neve/inc/customizer/options/ |
Upload File : |
<?php /** * Customizer checkout controls. * * @package Neve\Customizer\Options */ namespace Neve\Customizer\Options; use Neve\Customizer\Base_Customizer; use Neve\Customizer\Types\Section; use Neve\Customizer\Types\Control; /** * Class Checkout * * @package Neve\Customizer\Options */ class Checkout extends Base_Customizer { /** * Init function * * @return bool|void */ public function init() { if ( defined( 'NEVE_PRO_VERSION' ) ) { return false; } parent::init(); } /** * Function that should be extended to add customizer controls. * * @return void */ public function add_controls() { $this->group_controls(); } /** * Change the controls added from WooCommerce. */ public function change_controls() { $changes = [ 'woocommerce_checkout_company_field' => [ 'priority' => 110 ], 'woocommerce_checkout_address_2_field' => [ 'priority' => 120 ], 'woocommerce_checkout_phone_field' => [ 'priority' => 130 ], 'woocommerce_checkout_highlight_required_fields' => [ 'priority' => 140, 'type' => 'neve_toggle_control', ], 'wp_page_for_privacy_policy' => [ 'priority' => 190 ], 'woocommerce_terms_page_id' => [ 'priority' => 200 ], 'woocommerce_checkout_privacy_policy_text' => [ 'priority' => 210 ], 'woocommerce_checkout_terms_and_conditions_checkbox_text' => [ 'priority' => 220 ], ]; foreach ( $changes as $control_slug => $props ) { foreach ( $props as $prop => $new_value ) { $this->change_customizer_object( 'control', $control_slug, $prop, $new_value ); } } } /** * Add control groups to better organize the customizer. */ private function group_controls() { $checkout_section = $this->wpc->get_section( 'woocommerce_checkout' ); $this->wpc->add_section( $checkout_section ); $this->add_control( new Control( 'neve_checkout_settings_heading', array( 'sanitize_callback' => 'sanitize_text_field', 'transport' => $this->selective_refresh, ), array( 'label' => esc_html__( 'Checkout Style', 'neve' ), 'section' => 'woocommerce_checkout', 'priority' => 0, 'class' => 'neve-checkout-accordion', 'accordion' => true, 'controls_to_wrap' => 1, 'expanded' => true, ), 'Neve\Customizer\Controls\Heading' ) ); $this->add_control( new Control( 'neve_woo_checkout_settings_heading', array( 'sanitize_callback' => 'sanitize_text_field', 'transport' => $this->selective_refresh, ), array( 'label' => esc_html__( 'General', 'neve' ), 'section' => 'woocommerce_checkout', 'priority' => 100, 'class' => 'woo-checkout-accordion', 'accordion' => true, 'controls_to_wrap' => 7, 'expanded' => true, ), 'Neve\Customizer\Controls\Heading' ) ); } }