Friday, January 27, 2012

How to remove Powered by from SOBI

find

mysite.com\components\com_sobi2\frontend.class.php

Line 314 : if( $config->pby ) {

you will see like this
Code:
if( $config->pby ) {
         $h = "P"."o"."w"."e"."r"."e"."d"." "."b"."y"." "."<"."a "."title"."=\""."S"."i"."g"."s"."i"."u"."."."N"."E"."T "."S"."o"."f"."t"."w"."a"."r"."e "."D"."e"."v"."e"."l"."o"."p"."m"."e"."n"."t"." "."a"."n"."d"." "."W"."e"."b"."d"."e"."s"."i"."g"."n\" h"."r"."e"."f=\"h"."t"."t"."p".":"."/"."/"."w"."w"."w"."."."s"."i"."g"."s"."i"."u".".n"."e"."t"."/\" "."t"."a"."rg"."et"."=\"_"."b"."l"."a"."nk"."\">S"."i"."g"."s"."i"."u.N"."E"."T</a>";
      }
 
now replace $h with null;

now above line look like this

Code:
$h = null;


hope you can easily understand

No comments: