2016-04-25 164 views
-1

我正在使用免费版本的PHP Grid - Lite。 我已成功集成并且该工具显示完全需要的报告。删除PHPGrid默认消息

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

"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

谢谢。

+2

也许你可以升级?如果您考虑通过使用该产品节省的时间,购买许可证通常非常符合成本效益。 – user2182349

回答

-2

持有此文本的DIV属于名为

“pg_notify”因此

写CSS该类如下可以删除(使无形的)这段文字类。

.pg_notify{ 
    display: none; 
} 

OR你可以使用PHP来改变包含要删除该文本的div CSS。

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