Ecshop background "Cloud Reminder not activated click activation" Patch Removal method
Ecshop Tutorial/Ecshop Tutorial Net (www.ecshop119.com) 2015-01-15
Ecshop background hint "Cloud Reminder not activated Click Activation" Delete method, the following by the ecshop Tutorial Network (www.ecshop119.com) tutorial for everyone to answer it!
First open the Ecshop system file: Admin/templates/start.htm file, the code about the Cloud alert deleted or commented out, delete it, the code is as follows:
<ul id= "cloud_list" style= "padding:0; margin:0; List-style-type:none; Color: #CC0000; " ></ul>
<script type= "Text/javascript" language= "Javascript" >
<!--
Ajax.call (' Cloud.php?is_ajax=1&act=cloud_remind ', ' ', Cloud_api, ' GET ', ' JSON ');
function Cloud_api (Result)
{
alert (result.content);
if (result.content== ' 0 ')
{
document.getElementById ("Cloud_list"). Style.display = ' None ';
}
Else
{
document.getElementById ("Cloud_list"). InnerHTML =result.content;
}
}
function Cloud_close (ID)
{
Ajax.call (' cloud.php?is_ajax=1&act=close_remind&remind_id= ' +id, ', Cloud_api, ' GET ', ' JSON ');
}
-
</script>
This removes the Ecshop activation prompt.
On the down delete ecshop Background cloud Service Center menu:
Open admin/templates/menu.htm
Find this line.
document.getElementById ("Menu-ul"). InnerHTML = document.getElementById ("Menu-ul"). innerhtml+ result.content;
Modifications become:
document.getElementById ("Menu-ul"). InnerHTML = document.getElementById ("Menu-ul"). InnerHTML;
Ecshop background "Cloud Reminder not activated click activation" Patch Removal method