| 1 |
<?php |
| 2 |
/** |
| 3 |
* Admin help message. |
| 4 |
* |
| 5 |
* @package WooCommerce_PagSeguro/Admin/Settings |
| 6 |
*/ |
| 7 |
|
| 8 |
if ( ! defined( 'ABSPATH' ) ) { |
| 9 |
exit; |
| 10 |
} |
| 11 |
?> |
| 12 |
<style type="text/css"> |
| 13 |
.form-table{ |
| 14 |
clear:none !important; |
| 15 |
} |
| 16 |
</style> |
| 17 |
<div class="wrap"> |
| 18 |
<form method="POST" action="options.php"> |
| 19 |
<h2><?php echo esc_html( get_admin_page_title() ); ?></h2> |
| 20 |
<div id="poststuff" class="metabox-holder has-right-sidebar"> |
| 21 |
<div class="inner-sidebar"> |
| 22 |
<div id="side-sortables" class="meta-box-sortabless ui-sortable" style="position:relative;"> |
| 23 |
<div id="sm_pnres" class="postbox"> |
| 24 |
<h3 class="hndle"><span>About this Plugin:</span></h3> |
| 25 |
<div class="inside"> |
| 26 |
<a class="sm_button sm_pluginHome" target="_blank" href="https://github.com/heitorspedroso/wp-tracking-codes">Contribute in repository GitHub</a><br> |
| 27 |
<a class="sm_button sm_pluginHome" target="_blank" href="https://br.wordpress.org/plugins/wp-tracking-codes">Wordpress Plugin</a><br><br> |
| 28 |
<a class="button activate-now button-primary" target="_blank" href="https://wordpress.org/support/plugin/wp-tracking-codes/reviews/" style="font-size:18px;"> |
| 29 |
Send Your Review |
| 30 |
</a> |
| 31 |
</div> |
| 32 |
</div> |
| 33 |
</div> |
| 34 |
</div> |
| 35 |
<div class="has-sidebar sm-padded"> |
| 36 |
<div id="post-body-content" class="has-sidebar-content"> |
| 37 |
<div class="meta-box-sortabless"> |
| 38 |
<!-- Rebuild Area --> |
| 39 |
<div id="sm_rebuild" class="postbox"> |
| 40 |
<h3 class="hndle"><span>Your Tracking Codes</span></h3> |
| 41 |
<div class="inside"> |
| 42 |
<?php //echo $options = get_option( 'tracking_analytics' ); ?> |
| 43 |
<?php settings_fields( 'wp-tracking-codes' ); //pass slug name of page, also referred |
| 44 |
//to in Settings API as option group name |
| 45 |
do_settings_sections( 'wp-tracking-codes' ); //pass slug name of page |
| 46 |
submit_button(); |
| 47 |
?> |
| 48 |
</div> |
| 49 |
</div> |
| 50 |
</div> |
| 51 |
</div> |
| 52 |
</div> |
| 53 |
</div> |
| 54 |
</form> |
| 55 |
</div> |
| 56 |
|