繁体   English   中英

删除 PHPGrid 默认消息

[英]Remove PHPGrid default message

我正在使用 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_notify'

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

.pg_notify{
    display: none;
}

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

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM