Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
meupet.app
/
wp-content
/
themes
/
astra
/
inc
/
compatibility
/
lifterlms
/
customizer
/
sections
/
Editing: class-astra-lifter-container-configs.php
<?php /** * Container Options for Astra theme. * * @package Astra * @author Brainstorm Force * @copyright Copyright (c) 2020, Brainstorm Force * @link https://www.brainstormforce.com * @since 1.4.3 */ if ( ! defined( 'ABSPATH' ) ) { exit; } if ( ! class_exists( 'Astra_Lifter_Container_Configs' ) ) { /** * Customizer Sanitizes Initial setup * * @since 1.4.3 */ class Astra_Lifter_Container_Configs extends Astra_Customizer_Config_Base { /** * Register LifterLMS 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( /** * Option: Shop Page */ array( 'name' => ASTRA_THEME_SETTINGS . '[lifterlms-content-layout]', 'type' => 'control', 'control' => 'ast-select', 'section' => 'section-container-layout', 'default' => astra_get_option( 'lifterlms-content-layout' ), 'priority' => 66, 'title' => __( 'LifterLMS Layout', 'astra' ), 'choices' => array( 'default' => __( 'Default', 'astra' ), 'boxed-container' => __( 'Boxed', 'astra' ), 'content-boxed-container' => __( 'Content Boxed', 'astra' ), 'plain-container' => __( 'Full Width / Contained', 'astra' ), 'page-builder' => __( 'Full Width / Stretched', 'astra' ), ), 'divider' => array( 'ast_class' => 'ast-top-divider' ), ), ); return array_merge( $configurations, $_configs ); } } } new Astra_Lifter_Container_Configs();
Save
Cancel