簡體   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