0
我爲WooCommerce開發了自定義付款網關,但無法顯示管理員設置。顯示WooCommerce付款網關管理設置
該插件分爲三個文件,main.php,class.php和settings.php。
網關顯示在我的前端,並且功能齊全,但是,由於設置未顯示在後端,因此所有內容都是硬編碼的。 This is how I'm calling settings.php in class.php
我爲WooCommerce開發了自定義付款網關,但無法顯示管理員設置。顯示WooCommerce付款網關管理設置
該插件分爲三個文件,main.php,class.php和settings.php。
網關顯示在我的前端,並且功能齊全,但是,由於設置未顯示在後端,因此所有內容都是硬編碼的。 This is how I'm calling settings.php in class.php
我的代碼中缺少負責顯示設置的管理選項功能。
`function admin_options() {
?>
<h2><?php _e('Settings Tab','woocommerce'); ?></h2>
<table class="form-table">
<?php $this->generate_settings_html(); ?>
</table> <?php
}`