| Server IP : 68.183.124.220 / Your IP : 216.73.217.137 Web Server : Apache/2.4.18 (Ubuntu) System : Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : gavin ( 1000) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins/astra/inc/customizer/ |
Upload File : |
<?php
/**
* Override default customizer panels, sections, settings or controls.
*
* @package Astra
* @author Astra
* @copyright Copyright (c) 2019, Astra
* @link https://wpastra.com/
* @since Astra 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Override Sections
*/
$wp_customize->get_section( 'title_tagline' )->priority = 5;
/**
* Override Settings
*/
$wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
$wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage';
/**
* Override Controls
*/
$wp_customize->get_control( 'custom_logo' )->priority = 5;
$wp_customize->get_control( 'blogname' )->priority = 7;
$wp_customize->get_control( 'blogdescription' )->priority = 10;
$wp_customize->get_control( 'header_textcolor' )->priority = 9;
$wp_customize->get_control( 'site_icon' )->priority = 6;
if ( isset( $wp_customize->selective_refresh ) ) {
$wp_customize->selective_refresh->add_partial(
'blogname',
array(
'selector' => '.main-header-bar .site-title a, .ast-small-footer-wrap .ast-footer-site-title',
'container_inclusive' => false,
'render_callback' => array( 'Astra_Customizer_Partials', '_render_partial_site_title' ),
)
);
}
if ( isset( $wp_customize->selective_refresh ) ) {
$wp_customize->selective_refresh->add_partial(
'blogdescription',
array(
'selector' => '.main-header-bar .site-description',
'container_inclusive' => false,
'render_callback' => array( 'Astra_Customizer_Partials', '_render_partial_site_tagline' ),
)
);
}
/*
* Modify WooCommerce default section priorities
*/
if ( class_exists( 'WooCommerce' ) ) {
$wp_customize->get_section( 'woocommerce_store_notice' )->priority = 9;
$wp_customize->get_section( 'woocommerce_product_catalog' )->priority = 11;
$wp_customize->get_section( 'woocommerce_checkout' )->priority = 21;
$wp_customize->get_panel( 'woocommerce' )->priority = 70;
}