File: /home/agritoday/www/wp-content/plugins/td-mobile-plugin/panel/td_panel_fonts.php
<?php echo td_panel_generator::box_start('Theme Fonts', false ); ?>
<!-- FONT SETTINGS -->
<div class="td-section-separator">Font Settings</div>
<?php
foreach (td_global_mob::$typography_settings_list as $panel_section => $font_settings_array) {
$panel_section_name = str_replace('mt_', '', $panel_section);
echo td_panel_generator::ajax_box($panel_section_name,
array(
'td_ajax_calling_file' => 'td_panel_theme_fonts',
'td_ajax_box_id' => 'td_get_font_section_by_section_id',
'section_name' => $panel_section,
'td_ajax_view' => 'td_theme_fonts',
'type' => 'in_theme',
)
);
}
?>
<?php echo td_panel_generator::box_end();?>