Hi guys,
How do i remove the generation numbers from the bottom of my html files. Also how do i remove the CMS stuff from the top of the CMSMS stylesheet. Yes I am still referencing my website to CMSMS, just don't want this gimmicks in the source code.
Remove Generation Info from bottom of page source
Re: Remove Generation Info from bottom of page source
http://www.cmsmadesimple.org/support/commercial-license
Since this is not inside a template but in the codebase, you are (imho) not allowed to remove the generation info unless you purchased a commercial license.
For the stylesheet stuff take a look into the stylesheets.
Since this is not inside a template but in the codebase, you are (imho) not allowed to remove the generation info unless you purchased a commercial license.
For the stylesheet stuff take a look into the stylesheets.
Last edited by NaN on Sun Nov 30, 2008 6:48 pm, edited 1 time in total.
Re: Remove Generation Info from bottom of page source
I don't think there's anything in the GPL that prevents you from removing the information about how long it took to generate the page and how many SQL queries it took. It's only the copyright info that you have to leave in. If you want to remove the copyright stuff, then you have to purchase the commercial license.
Re: Remove Generation Info from bottom of page source
If this is the case you should take a look at the bottom of the index.php.
Re: Remove Generation Info from bottom of page source
I'm not sure I follow you, NaN. What exactly are you referring to at the bottom of index.php? Are you looking at the source or the generated html output?
Re: Remove Generation Info from bottom of page source
I mean the source code of the index.php at your server.
Not the html ouptput in the browser.
In the index.php at line 330 you will find something like that:
That means the performance info will only be displayed if there is no such setting in the config.php.
And that means that you just need to add a line like
To your config.php.
Did not test that but it should work.
Not the html ouptput in the browser.
In the index.php at line 330 you will find something like that:
Code: Select all
else if( !isset($config['hide_performance_info']) )
And that means that you just need to add a line like
Code: Select all
$config['hide_performance_info'] = true;
Did not test that but it should work.
Re: Remove Generation Info from bottom of page source
This is changed from cmsms 1.7.1 ! Because of found problems with json actions.
From now the performance info is set OFF by default.
Now it's posible to turn it back ON by adding a NEW setting to config.php.
From now the performance info is set OFF by default.
Now it's posible to turn it back ON by adding a NEW setting to config.php.
Code: Select all
#New parameter to still show the old fashion performance data in footer of show source
$config['show_performance_info'] = 1;
Last edited by reneh on Fri May 14, 2010 6:54 am, edited 1 time in total.
ReneH 
A search will save you hours waiting for an answer!

A search will save you hours waiting for an answer!
