您好,我在WooCommerce信息中心中有此表
我想添加“导出到Excel”按钮以将HTML表导出到Excel
但是问题是我如何在仪表板的WooCommerce-> Report中包含一个javascript文件
/wp-admin/admin.php?page=wc-reports&tab=reports
我在我的functions.php
文件中添加了以下代码:
wp_register_script( 'zumra-reports', get_template_directory_uri() . '/js/export-to-excel.js', array('jquery'), false, true );
if ( is_page('wc-reports') ) {
wp_enqueue_script( 'zumra-reports' );
}
但是当我放置任何JavaScript时,它都不会显示在仪表板的WooCoomerce选项卡中
最佳答案
使用以下代码:
wp_register_script( 'zumra-reports', get_template_directory_uri() . '/js/export-to-excel.js', array('jquery'), false, true );
if ( is_admin() && isset( $_GET['page'] ) && 'wc-reports' === $_GET['page'] ) {
wp_enqueue_script( 'zumra-reports' );
}
它将仅在WooCommerce报告页面上添加脚本。
关于javascript - WooCommerce将HTML表导出到Excel,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55628583/