Jump to content
WebFlake
  • 0

How to remove copyrights of IPS 4


polkovnika2

Question

How to remove copyrights of IPS 4

Hello Does anybody know how removing copyrights of IPS 4.
After some of the last updates appear inscription   Community Software by Invision Power Services, Inc.
The problem is not in the theme that I used, inscription appears in all its theme. I could not find in which file is text and delete it.

I apologize for my bad English.

Edited by polkovnika2
Link to comment
Share on other sites

Recommended Posts

  • 3

Just to try a safer way of doing it ?

AdminCP > Customization > Themes > Your Theme > Edit HTML & CSS > custom.css

Add the following code.

#elCopyright {
display: none;
}

@Mindless and @polkovnika2

This should hide the whole div that contains the information.

Edited by Cookie Monster
Added posible solution
  • Like 1
  • Thanks 2
  • Upvote 4

VAEfvMI.png

Liked what i posted remember to feed me a cookie ->
Or you can add a cookie to myCookieJar

Link to comment
Share on other sites

  • 1

This is the path

/system/Theme/Theme.php

check for something like this:

		$calledClass = get_called_class();

		if( $functionName == 'theme_core_front_global_footer' or ( $functionName == 'footer' and $app == 'core' and $location == 'front' and $group == 'global' ) )
		{
			$content = $content . "\n<p id='elCopyright'>
	<span id='elCopyright_userLine'>{lang=\"copyright_line_value\"}</span>
	{{if !\$licenseData = \IPS\IPS::licenseKey() or !isset(\$licenseData['products']['copyright']) or !\$licenseData['products']['copyright']}}<a rel='nofollow' title='Community Software by Invision Power Services, Inc.' href='http://www.invisionpower.com/'>Community Software by Invision Power Services, Inc.</a>{{endif}}
</p>";
		}

and remove the

{{if !\$licenseData = \IPS\IPS::licenseKey() or !isset(\$licenseData['products']['copyright']) or !\$licenseData['products']['copyright']}}<a rel='nofollow' title='Community Software by Invision Power Services, Inc.' href='http://www.invisionpower.com/'>Community Software by Invision Power Services, Inc.</a>{{endif}}

 

 

Cheers

  • Like 1
  • Thanks 1
  • Upvote 1
Link to comment
Share on other sites

  • 0

Hello, thank you very much for your help.

I found removed the text, but the inscription on my site remained.

 

        $calledClass = get_called_class();

        if( $functionName == 'theme_core_front_global_footer' or ( $functionName == 'footer' and $app == 'core' and $location == 'front' and $group == 'global' ) )
        {
            $content = $content . "\n<p id='elCopyright'>
    <span id='elCopyright_userLine'>{lang=\"copyright_line_value\"}</span>
    

        $calledClass = get_called_class();

        if( $functionName == 'theme_core_front_global_footer' or ( $functionName == 'footer' and $app == 'core' and $location == 'front' and $group == 'global' ) )
        {
            $content = $content . "\n<p id='elCopyright'>
    <span id='elCopyright_userLine'>{lang=\"copyright_line_value\"}</span>
    <a rel='nofollow' title='Community Software by Invision Power Services, Inc.' href='https://www.invisionpower.com/'>Community Software by Invision Power Services, Inc.</a></p>";
        }

</p>";
        }


I removed it but has no effect.

 

<a rel='nofollow' title='Community Software by Invision Power Services, Inc.' href='https://www.invisionpower.com/'>Community Software by Invision Power Services, Inc.</a>

 

Edited by polkovnika2
Link to comment
Share on other sites

  • 0

I don't like it when people remove copyright when people spent time create it, and then they go "oh look i made this"

But this was answered of someone else i will simply put this in @polkovnika2
 

<span id='elCopyright_userLine'>{lang=\"copyright_line_value\"}</span>

AdminCP > Customization > Languages > Translate >
Search for copyright.... Insert

 

&nbsp;

To use empty space.
Also if you want just remove that SPAN element what you removed is the link to the site not the text itself. 

  • Upvote 1

VAEfvMI.png

Liked what i posted remember to feed me a cookie ->
Or you can add a cookie to myCookieJar

Link to comment
Share on other sites

  • 0
1 hour ago, polkovnika2 said:

Thanks @Cookie Monster

But this does not work.

Well as i said its no point of removing it you didnt make the forum ? So why can't people see its IPS ?

btw you can try remove the following

<p id='elCopyright'>
    <span id='elCopyright_userLine'>{lang=\"copyright_line_value\"}</span>
    <a rel='nofollow' title='Community Software by Invision Power Services, Inc.' href='https://www.invisionpower.com/'>Community Software by Invision Power Services, Inc.</a></p>

 

VAEfvMI.png

Liked what i posted remember to feed me a cookie ->
Or you can add a cookie to myCookieJar

Link to comment
Share on other sites

  • 0
19 hours ago, polkovnika2 said:

Hello, thank you very much for your help.

I found removed the text, but the inscription on my site remained.

I removed it but has no effect.
 

Did you try to cache from the AdminCP??? Do you have cloduflare active? If so, try to cache also from cloudflare...

Link to comment
Share on other sites

  • 0
7 hours ago, JohnnyKing94 said:

Did you try to cache from the AdminCP??? Do you have cloduflare active? If so, try to cache also from cloudflare...

I do not use cloudflare,...
will test a new installation on my test server and will write their development.

Link to comment
Share on other sites

  • 0
22 hours ago, Cookie Monster said:

Well as i said its no point of removing it you didnt make the forum ? So why can't people see its IPS ?

btw you can try remove the following


<p id='elCopyright'>
    <span id='elCopyright_userLine'>{lang=\"copyright_line_value\"}</span>
    <a rel='nofollow' title='Community Software by Invision Power Services, Inc.' href='https://www.invisionpower.com/'>Community Software by Invision Power Services, Inc.</a></p>

 

 
 

Which file?
Thank you :D

Edited by Mindless
Scroll up.
Link to comment
Share on other sites

  • 0
1 hour ago, Cookie Monster said:

Just to try a safer way of doing it ?

AdminCP > Customization > Themes > Your Theme > Edit HTML & CSS > custom.css

Add the following code.


#elCopyright {
display: none;
}

@Mindless and @polkovnika2

This should hide the whole div that contains the information.

Thanks to this work! :)

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...