HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ubuntu-8gb-hel1-1 6.8.0-55-generic #57-Ubuntu SMP PREEMPT_DYNAMIC Wed Feb 12 23:42:21 UTC 2025 x86_64
User: www-data (33)
PHP: 8.1.32
Disabled: NONE
Upload Files
File: /var/www/agighana.org_backup/design.php
<?php
global $themetype;
// Design Section
		new \Kirki\Section(
			'design_section',
			[
				'title'       => esc_html__( 'Design', 'kirki' ),
				'panel'       => 'globly_theme_option',
				'priority'    => 160,
			]
		);

		if(isset($themetype['design_underline_color'])){
			new \Kirki\Field\Color(
				[
					'settings'    => 'design_underline_color',
					'label'       => __( 'Heding Underline Color', 'kirki' ),
					'section'     => 'design_section',
					'default'     => $themetype['design_underline_color'],
					// 'default'     => '#273641',
					'priority'	=> 5,
					'choices'     => [
						'alpha' => true,
					],
					'output' => array(
						array(
							'element'  => '.'.$themetype['plugiformname'].'_title_underline h2:after, .'.$themetype['plugiformname'].'_about_main_title h2:after, .'.$themetype['plugiformname'].'_our_portfolio_main_title h2:after, .our_team_main_title h2:after, .our_testimonial_main_title h2:after, .our_services_title h2:after, .appointment_title h2:after, .our_sponsors_title h2:after, .featured-section_title h2:after, .blog_main_title h2:after, .restaurant_menu_main_title h2:after, .pricing_plan_title  h2:after, .heading_main_title h2::before',
							'property' => 'background-color',
							'suffix' => ' !important',
						),
					),
				]
			);
		}
?>