_e('Child theme', 'axiscomposer');
?>
:</td>
			<td class="help"><?php 
echo ac_help_tip(__('Displays whether or not the current theme is a child theme.', 'axiscomposer'));
?>
</td>
			<td><?php 
echo is_child_theme() ? '<mark class="yes"><span class="dashicons dashicons-yes"></span></mark>' : '<span class="dashicons dashicons-no-alt"></span> &ndash; ' . sprintf(__('If you\'re modifying AxisComposer on a parent theme you didn\'t build personally, then we recommend using a child theme. See: <a href="%s" target="_blank">How to create a child theme</a>', 'axiscomposer'), 'https://codex.wordpress.org/Child_Themes');
?>
</td>
		</tr>
		<?php 
if (is_child_theme()) {
    $parent_theme = wp_get_theme($active_theme->Template);
    $update_theme_version = AC_Admin_Status::get_latest_theme_version($parent_theme);
    ?>
		<tr>
			<td data-export-label="Parent Theme Name"><?php 
    _e('Parent theme name', 'axiscomposer');
    ?>
:</td>
			<td class="help"><?php 
    echo ac_help_tip(__('The name of the parent theme.', 'axiscomposer'));
    ?>
</td>
			<td><?php 
    echo esc_html($parent_theme->Name);
    ?>
</td>
		</tr>