2016-04-25 110 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>'; 
?>