/home/altere25/infinet.finance/wp-content/plugins/cmp-premium-themes/titan
Edit: /home/altere25/infinet.finance/wp-content/plugins/cmp-premium-themes/titan/titan-defaults.php (2700B)
true,
'slider' => false,
'counter' => true,
'counter_script' => true,
'subscribe' => true,
'contact-form' => false,
'social' => true,
'footer' => true,
'special_effects' => true,
);
if (isset($_POST['niteoCS_font_color'])) {
update_option('niteoCS_font_color', sanitize_hex_color($_POST['niteoCS_font_color']));
}
if (isset($_POST['niteoCS_active_color'])) {
update_option('niteoCS_active_color', sanitize_hex_color($_POST['niteoCS_active_color']));
}
if (isset($_POST['niteoCS_social_color'])) {
update_option('niteoCS_social_color', sanitize_hex_color($_POST['niteoCS_social_color']));
}
if (isset($_POST['niteoCS_button_text_color'])) {
update_option('niteoCS_button_text_color', sanitize_hex_color($_POST['niteoCS_button_text_color']));
}
$banner_type = get_option('niteoCS_banner', '2');
$font_color = get_option('niteoCS_font_color', '#232323');
$active_color = get_option('niteoCS_active_color', '#FC5D28');
$social_color = get_option('niteoCS_social_color', '#ffffff');
$button_text_color = get_option('niteoCS_button_text_color', '#fff');
$heading_font = array(
'family' => get_option('niteoCS_font_headings['.$themeslug.']', 'Poppins'),
'variant' => get_option('niteoCS_font_headings_variant['.$themeslug.']', '700'),
'size' => get_option('niteoCS_font_headings_size['.$themeslug.']', '49'),
'spacing' => get_option('niteoCS_font_headings_spacing['.$themeslug.']', '0'),
);
$content_font = array(
'family' => get_option('niteoCS_font_content['.$themeslug.']', 'Open Sans'),
'variant' => get_option('niteoCS_font_content_variant['.$themeslug.']', '400'),
'size' => get_option('niteoCS_font_content_size['.$themeslug.']', '19'),
'spacing' => get_option('niteoCS_font_content_spacing['.$themeslug.']', '0'),
'line-height' => get_option('niteoCS_font_content_lineheight['.$themeslug.']', '1.5'),
);
$heading_font['variant'] = ($heading_font['variant'] == 'regular') ? '400' : $heading_font['variant'];
$heading_font['variant'] = ($heading_font['variant'] == 'italic') ? '400' : $heading_font['variant'];
$content_font['variant'] = ($content_font['variant'] == 'regular') ? '400' : $content_font['variant'];
$content_font['variant'] = ($content_font['variant'] == 'italic') ? '400' : $content_font['variant'];
$heading_font_style = preg_split('/(?<=[0-9])(?=[a-z]+)/i', $heading_font['variant']);
$content_font_style = preg_split('/(?<=[0-9])(?=[a-z]+)/i', $content_font['variant']);