-1

我正在使用 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!"

有没有办法可以禁用它?

还附上了它的示例图像。 报告视图

谢谢你。

4

1 回答 1

0

保存此文本的 div 属于一个名为

'pg_notify'

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

.pg_notify{
    display: none;
}

或者,您可以使用 PHP 更改包含要删除的文本的 div 的 CSS。

<?php 
echo '<style type = "text/css">
    .pg_notify{
            display: none;
       }
    </style>';
?>
于 2016-05-10T15:47:28.263 回答