[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
themes
/
astra
/
inc
/
compatibility
/
lifterlms
/
customizer
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 sections
SET
[ DEL ]
📄 class-astra-liferlms-section-configs.php
1,350 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: class-astra-liferlms-section-configs.php
<?php /** * Register customizer panels & sections. * * @package Astra\ * @link https://www.brainstormforce.com * @since Astra 1.2.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } if ( ! class_exists( 'Astra_Liferlms_Section_Configs' ) ) { /** * Customizer Sanitizes Initial setup */ class Astra_Liferlms_Section_Configs extends Astra_Customizer_Config_Base { /** * Register LearnDash Container settings. * * @param Array $configurations Astra Customizer Configurations. * @param WP_Customize_Manager $wp_customize instance of WP_Customize_Manager. * @since 1.4.3 * @return Array Astra Customizer Configurations with updated configurations. */ public function register_configuration( $configurations, $wp_customize ) { $_configs = array( array( 'name' => 'section-lifterlms', 'type' => 'section', 'priority' => 65, 'title' => __( 'LifterLMS', 'astra' ), ), /** * General Section */ array( 'name' => 'section-lifterlms-general', 'type' => 'section', 'title' => __( 'General', 'astra' ), 'section' => 'section-lifterlms', 'priority' => 0, ), ); return array_merge( $configurations, $_configs ); } } } new Astra_Liferlms_Section_Configs();