【问题标题】:Remove PHPGrid default message删除 PHPGrid 默认消息
【发布时间】:2016-08-18 08:14:52
【问题描述】:

我正在使用免费版本的 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!"

有什么方法可以禁用它吗?

还附上了它的示例图片。 Report View

谢谢。

【问题讨论】:

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

标签: phpgrid


【解决方案1】:

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

的类

'pg_notify'

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

.pg_notify{
    display: none;
}

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

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

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2019-09-21
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-03-19
    • 2020-02-26
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多