File: /home/agritoday/www/wp-content/plugins/td-mobile-plugin/panel/td_panel_custom_code.php
<!-- CUSTOM CODE -->
<?php
echo td_panel_generator::box_start('Custom code', false); ?>
<!-- Custom CSS -->
<div class="td-box-row">
<div class="td-box-description td-box-full">
<span class="td-box-title">WRITE YOUR OWN CSS HERE</span>
<p>The CSS from this box will load on all the pages of the site. Press Ctrl + Space while editing to bring up a suggestion box.</p>
</div>
</div>
<div class="td-box-row-margin-bottom">
<?php
echo td_panel_generator::css_editor(array(
'ds' => 'td_option',
'option_id' => 'tds_custom_css_mob',
));
?>
</div>
<!-- Custom JS -->
<div class="td-box-row">
<div class="td-box-description td-box-full">
<span class="td-box-title">YOUR CUSTOM JAVASCRIPT</span>
<p>Add custom JavaScript easly, using this editor. Please do not include the <script> </script> tags.
<br><b>NOTE:</b> On AMP scripts are not allowed so this is code will not be included on amp templates.</p>
</div>
</div>
<div class="td-box-row-margin-bottom">
<?php
echo td_panel_generator::js_editor(array(
'ds' => 'td_option',
'option_id' => 'tds_custom_javascript_mob',
));
?>
</div>
<!-- Custom HTML -->
<div class="td-box-row">
<div class="td-box-description td-box-full">
<span class="td-box-title">YOUR CUSTOM HTML</span>
<p>Add custom HTML easily, using this editor. The HTML will be placed at the end of the page.</p>
</div>
</div>
<div class="td-box-row-margin-bottom">
<?php
echo td_panel_generator::html_editor(array(
'ds' => 'td_option',
'option_id' => 'tds_custom_html_mob',
));
?>
</div>
<?php
echo td_panel_generator::box_end();
?>