WooCommerce插件未显示

WooCommerce插件未显示,woocommerce,Woocommerce,我买了一个插件,它在产品页面上有一个产品表,但是它没有显示在产品页面上。我把网站放进调试模式,结果出现了这个问题 注意:未定义的索引:第183行的/www/eroofingcouk\u 311/public/wp content/plugins/elex-woocommerce动态定价和折扣溢价/public/elex-dynamic-pricing-plugin-public.php中的价格表 function elex_dp_show_pricing_table() { $selec

我买了一个插件,它在产品页面上有一个产品表,但是它没有显示在产品页面上。我把网站放进调试模式,结果出现了这个问题

注意:未定义的索引:第183行的/www/eroofingcouk\u 311/public/wp content/plugins/elex-woocommerce动态定价和折扣溢价/public/elex-dynamic-pricing-plugin-public.php中的价格表

function elex_dp_show_pricing_table() {
    $selected_role=get_option('elex_dp_allowed_roles_to_show_pricing_table');
    if(!empty($selected_role) ) {
            $user = wp_get_current_user();
            if(!count(array_intersect($user->roles, $selected_role)) > 0) {
                return;
            }
    }
    $path= dirname(__FILE__) ."/elex-single-product-pricing-table.php";
    if ($GLOBALS['settings']['price_table_on_off'] == 'enable' && file_exists($path) == true ) {
        include "elex-single-product-pricing-table.php";
    }
第183行是如果($GLOBALS['settings']['price\u table\u on\u off']='enable'&&file\u存在($path)==true){
我想知道是否有人知道它的问题是什么以及如何修复它?

如果它涉及到购买的插件,您是否已经联系了插件的创建者?如果它涉及到购买的插件,您是否已经联系了插件的创建者?