Remove deleted javascript from body
Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;
up vote
2
down vote
favorite
I deleted the file in my ftp but it is still being loaded on every page at the end of the body tag
<script type="text/javascript" id="cookieinfo"
src="/media/js/cookieinfo.min.js">
</script>
Would the method to removing it be placing this text in the page.xml
file?
<cms_index_index>
<reference name="head">
<action method="removeItem"><script>media/js/cookieinfo.min.js</script></action>
</reference>
</cms_index_index>
javascript magento-1.6
add a comment |Â
up vote
2
down vote
favorite
I deleted the file in my ftp but it is still being loaded on every page at the end of the body tag
<script type="text/javascript" id="cookieinfo"
src="/media/js/cookieinfo.min.js">
</script>
Would the method to removing it be placing this text in the page.xml
file?
<cms_index_index>
<reference name="head">
<action method="removeItem"><script>media/js/cookieinfo.min.js</script></action>
</reference>
</cms_index_index>
javascript magento-1.6
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I deleted the file in my ftp but it is still being loaded on every page at the end of the body tag
<script type="text/javascript" id="cookieinfo"
src="/media/js/cookieinfo.min.js">
</script>
Would the method to removing it be placing this text in the page.xml
file?
<cms_index_index>
<reference name="head">
<action method="removeItem"><script>media/js/cookieinfo.min.js</script></action>
</reference>
</cms_index_index>
javascript magento-1.6
I deleted the file in my ftp but it is still being loaded on every page at the end of the body tag
<script type="text/javascript" id="cookieinfo"
src="/media/js/cookieinfo.min.js">
</script>
Would the method to removing it be placing this text in the page.xml
file?
<cms_index_index>
<reference name="head">
<action method="removeItem"><script>media/js/cookieinfo.min.js</script></action>
</reference>
</cms_index_index>
javascript magento-1.6
edited Sep 3 at 8:01
Prince
6,1792932
6,1792932
asked Sep 3 at 7:41
John
464
464
add a comment |Â
add a comment |Â
3 Answers
3
active
oldest
votes
up vote
1
down vote
If your js file is in :
root/js/
, use this:<action method="removeItem"><type>js</type><name>file.js</name></action>
If your js file is in :
skin/frontend/package/theme/js/
, use this :<action method="removeItem"><type>skin_js</type><name>file.js</name></action>
Clean cache, then it should work
add a comment |Â
up vote
1
down vote
if you want delete that js file from entire page in your website, try to place this code in your local.xml, if the local.xml file still does not exist you can create it in the this folder :
<project_root>/app/design/frontend/<your_theme>/layout/local.xml
and then write this code in your local.xml
<?xml version="1.0"?>
<layout>
<default>
<reference name="head">
<action method="removeItem">
<type>js</type>
<name>media/js/cookieinfo.min.js</name>
</action>
</reference>
</default>
</layout>
you can reference to this link for detail answer :
Js file is not removed from xml
add a comment |Â
up vote
0
down vote
Perhaps I phrased the question incorrectly. Still new at Magento. My solution was that I had forgotten the script was still in the System>Configuration>Design>Footer in the Miscellaneous HTML block. That's what was generating a 404.
add a comment |Â
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
If your js file is in :
root/js/
, use this:<action method="removeItem"><type>js</type><name>file.js</name></action>
If your js file is in :
skin/frontend/package/theme/js/
, use this :<action method="removeItem"><type>skin_js</type><name>file.js</name></action>
Clean cache, then it should work
add a comment |Â
up vote
1
down vote
If your js file is in :
root/js/
, use this:<action method="removeItem"><type>js</type><name>file.js</name></action>
If your js file is in :
skin/frontend/package/theme/js/
, use this :<action method="removeItem"><type>skin_js</type><name>file.js</name></action>
Clean cache, then it should work
add a comment |Â
up vote
1
down vote
up vote
1
down vote
If your js file is in :
root/js/
, use this:<action method="removeItem"><type>js</type><name>file.js</name></action>
If your js file is in :
skin/frontend/package/theme/js/
, use this :<action method="removeItem"><type>skin_js</type><name>file.js</name></action>
Clean cache, then it should work
If your js file is in :
root/js/
, use this:<action method="removeItem"><type>js</type><name>file.js</name></action>
If your js file is in :
skin/frontend/package/theme/js/
, use this :<action method="removeItem"><type>skin_js</type><name>file.js</name></action>
Clean cache, then it should work
answered Sep 3 at 8:05
Prince
6,1792932
6,1792932
add a comment |Â
add a comment |Â
up vote
1
down vote
if you want delete that js file from entire page in your website, try to place this code in your local.xml, if the local.xml file still does not exist you can create it in the this folder :
<project_root>/app/design/frontend/<your_theme>/layout/local.xml
and then write this code in your local.xml
<?xml version="1.0"?>
<layout>
<default>
<reference name="head">
<action method="removeItem">
<type>js</type>
<name>media/js/cookieinfo.min.js</name>
</action>
</reference>
</default>
</layout>
you can reference to this link for detail answer :
Js file is not removed from xml
add a comment |Â
up vote
1
down vote
if you want delete that js file from entire page in your website, try to place this code in your local.xml, if the local.xml file still does not exist you can create it in the this folder :
<project_root>/app/design/frontend/<your_theme>/layout/local.xml
and then write this code in your local.xml
<?xml version="1.0"?>
<layout>
<default>
<reference name="head">
<action method="removeItem">
<type>js</type>
<name>media/js/cookieinfo.min.js</name>
</action>
</reference>
</default>
</layout>
you can reference to this link for detail answer :
Js file is not removed from xml
add a comment |Â
up vote
1
down vote
up vote
1
down vote
if you want delete that js file from entire page in your website, try to place this code in your local.xml, if the local.xml file still does not exist you can create it in the this folder :
<project_root>/app/design/frontend/<your_theme>/layout/local.xml
and then write this code in your local.xml
<?xml version="1.0"?>
<layout>
<default>
<reference name="head">
<action method="removeItem">
<type>js</type>
<name>media/js/cookieinfo.min.js</name>
</action>
</reference>
</default>
</layout>
you can reference to this link for detail answer :
Js file is not removed from xml
if you want delete that js file from entire page in your website, try to place this code in your local.xml, if the local.xml file still does not exist you can create it in the this folder :
<project_root>/app/design/frontend/<your_theme>/layout/local.xml
and then write this code in your local.xml
<?xml version="1.0"?>
<layout>
<default>
<reference name="head">
<action method="removeItem">
<type>js</type>
<name>media/js/cookieinfo.min.js</name>
</action>
</reference>
</default>
</layout>
you can reference to this link for detail answer :
Js file is not removed from xml
answered Sep 3 at 8:10
mrfizh
1781220
1781220
add a comment |Â
add a comment |Â
up vote
0
down vote
Perhaps I phrased the question incorrectly. Still new at Magento. My solution was that I had forgotten the script was still in the System>Configuration>Design>Footer in the Miscellaneous HTML block. That's what was generating a 404.
add a comment |Â
up vote
0
down vote
Perhaps I phrased the question incorrectly. Still new at Magento. My solution was that I had forgotten the script was still in the System>Configuration>Design>Footer in the Miscellaneous HTML block. That's what was generating a 404.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Perhaps I phrased the question incorrectly. Still new at Magento. My solution was that I had forgotten the script was still in the System>Configuration>Design>Footer in the Miscellaneous HTML block. That's what was generating a 404.
Perhaps I phrased the question incorrectly. Still new at Magento. My solution was that I had forgotten the script was still in the System>Configuration>Design>Footer in the Miscellaneous HTML block. That's what was generating a 404.
answered Sep 3 at 10:48
John
464
464
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f240569%2fremove-deleted-javascript-from-body%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password