删除PHPGrid默认消息

删除PHPGrid默认消息,phpgrid,Phpgrid,我使用的是PHP Grid-Lite的免费版本。 我已成功集成,该工具可准确显示所需的报告 唯一的问题是它显示默认文本 "You are using phpGrid Lite. Please consider upgrading phpGrid to the full version to have great features including edit, master detail, and grouping, composite key, file upload, and premium

我使用的是PHP Grid-Lite的免费版本。 我已成功集成,该工具可准确显示所需的报告

唯一的问题是它显示默认文本

"You are using phpGrid Lite. Please consider upgrading phpGrid to the full version to have great features including edit, master detail, and grouping, composite key, file upload, and premium themes!"
有什么方法可以禁用它吗

还附上了它的样本图像。


谢谢。

保存此文本的div属于名为

“pg_通知”

因此,为这个类编写如下CSS可以删除(使其不可见)这个文本

.pg_notify{
    display: none;
}
您可以使用PHP更改包含要删除的文本的div的CSS

<?php 
echo '<style type = "text/css">
    .pg_notify{
            display: none;
       }
    </style>';
?>

也许您可以升级?如果您考虑一下使用该产品节省的时间,购买许可证通常是非常划算的。