ShopEX 4.85 版本 购买了商业版 版权还是在下面
后台设置不显示,前台依然显示,
ShopEX真的不厚道,论坛上发个问题,几千年都没人理你
只能自己找方法了
说下方法:
找到目录文件:
\core\include_v5\smartyplugins\function.footer.php
打开是乱码吧,用Zend加密了的,自己用Zend解密工具解或者,用我解出来的
版权已经去掉了,直接复制贴进去就可以,测试过了 不影响其他功能
代码:
===================华丽丽的分割线========================
loadModel( "system/frontend" );
$tmpdata = $system->getConf( "im.setting" );
$data = unserialize( $tmpdata );
$theme_dir = $system->base_url( )."themes/".$output->theme;
echo $smarty->_fetch_compile_include( "shop:common/footer.html", array(
"theme_dir" => $theme_dir,
"certtext" => "".$system->getConf( "site.certtext" )."",
"mini_cart" => $system->getConf( "site.buy.target" ) == 3,
"preview_theme" => $system->in_preview_theme,
"im_setting" => $data,
"system_url" => $system->base_url( ),
"stateString" => "cron=".urlencode( $system->request['action']['controller'].":".$system->request['action']['method'] )."&p=".urlencode( $system->request['action']['args'][0] )
) );
if ( constant( "SHOP_DEVELOPER" ) )
{
$html .= $system->_debugger['log'];
}
if ( $system->getConf( "shopex.wss.show" ) )
{
$wssjs = $system->getConf( "shopex.wss.js" );
}
if ( $system->getConf( "certificate.channel.status" ) )
{
$channel = $system->getConf( "certificate.channel.service" )."getConf( "certificate.channel.url" )."\" target=\"_blank\">".$system->getConf( "certificate.channel.name" );
$channel .= "";
}
if ( $system->getConf( "site.shopex_certify" ) == 0 )
{
$ref = $_SERVER['HTTP_HOST'];
$check = md5( $ref."ShopEx@Store" );
$str = urlencode( $system->getConf( "certificate.str" ) );
if ( !$str )
{
$str = urlencode( __( "无" ) );
}
if ( constant( "SAAS_MODE" ) )
{
$versionStr = "";
}
else
{
$versionStr = "v".$system->_app_version;
}
if ( $system->use_gzip )
{
$gzip = "enabled";
}
else
{
$gzip = "disabled";
}
$themeFoot = "".$system->getConf( "system.foot_edit" )."";
$PoweredStr = "";
if ( $system->getConf( "certificate.auth_type" ) == "commercial" )
{
$greencard = $system->getConf( "store.greencard" );
if ( !isset( $greencard ) || $greencard )
{
$PoweredStr .= "
";
}
}
//$PoweredStr .= "";
//$PoweredStr .= "Powered by ShopEx";
//$PoweredStr .= "";
//$PoweredStr .= " ".$versionStr."";
//$PoweredStr .= " ";
if ( $channel )
{
$PoweredStr .= "
".$channel." ";
}
if ( $system->getConf( "site.certtext" ) )
{
$PoweredStr .= "".$system->getConf( "site.certtext" )."";
}
if ( $wssjs )
{
$PoweredStr .= " ";
}
$PoweredStr .= "";
if ( $system->getConf( "site.rsc_rpc" ) && defined( "RSC_RPC" ) && ( $certificate = $system->getConf( "certificate.id" ) ) )
{
$p = array( );
foreach ( $runtime['path'] as $path )
{
$p[] = $path['title'];
}
$pageinfo['path'] = implode( $p, "/" );
$p = "";
foreach ( $pageinfo as $k => $v )
{
$p .= "&_".$k."=".urlencode( $v );
}
$p .= "&_time=".time( );
$RSC_RPC_STR = "";
$PoweredStr .= $RSC_RPC_STR;
}
}
return $html.$themeFoot.$PoweredStr;
}
?>