简体   繁体   中英

Remove PHPGrid default message

I am using the free version of PHP Grid - Lite. I have successfully integrated and the tool shows reports as exactly required.

The only problem is it shows a default text

"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!"

Is there a way I can disable it ?

Have also attached a sample image of it. Report View

Thank you.

The div which holds this text belongs to a class named

'pg_notify'

therefore writing a CSS for this class as follows could remove (make invisible) this text.

.pg_notify{
    display: none;
}

OR you could use PHP to change the CSS of the div containing this text you want to remove.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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