Remove price on Magento product page
I'm trying to hide the value on the product page, it's hidden on the page, however it's showing up in Google's results and I do not want it.
When I see the source code of the page, the TAG still stays there:
<span class = "price" itemprop = "price"> 45.12 </ span>
I commented the price tag on the following files:
app/design/frontend/base/default/template/catalog/product/list.phtml
app/design/frontend/base/default/template/catalog/product/new.phtml
app/design/frontend/base/default/template/catalog/product/view.phtml
But still unsuccessful.
Is there any other place where I need to comment/remove this TAG?
Thank you!
php magento frontend google-search
add a comment |
I'm trying to hide the value on the product page, it's hidden on the page, however it's showing up in Google's results and I do not want it.
When I see the source code of the page, the TAG still stays there:
<span class = "price" itemprop = "price"> 45.12 </ span>
I commented the price tag on the following files:
app/design/frontend/base/default/template/catalog/product/list.phtml
app/design/frontend/base/default/template/catalog/product/new.phtml
app/design/frontend/base/default/template/catalog/product/view.phtml
But still unsuccessful.
Is there any other place where I need to comment/remove this TAG?
Thank you!
php magento frontend google-search
add a comment |
I'm trying to hide the value on the product page, it's hidden on the page, however it's showing up in Google's results and I do not want it.
When I see the source code of the page, the TAG still stays there:
<span class = "price" itemprop = "price"> 45.12 </ span>
I commented the price tag on the following files:
app/design/frontend/base/default/template/catalog/product/list.phtml
app/design/frontend/base/default/template/catalog/product/new.phtml
app/design/frontend/base/default/template/catalog/product/view.phtml
But still unsuccessful.
Is there any other place where I need to comment/remove this TAG?
Thank you!
php magento frontend google-search
I'm trying to hide the value on the product page, it's hidden on the page, however it's showing up in Google's results and I do not want it.
When I see the source code of the page, the TAG still stays there:
<span class = "price" itemprop = "price"> 45.12 </ span>
I commented the price tag on the following files:
app/design/frontend/base/default/template/catalog/product/list.phtml
app/design/frontend/base/default/template/catalog/product/new.phtml
app/design/frontend/base/default/template/catalog/product/view.phtml
But still unsuccessful.
Is there any other place where I need to comment/remove this TAG?
Thank you!
php magento frontend google-search
php magento frontend google-search
edited Nov 14 '18 at 8:47
Nestor Pereira
asked Nov 13 '18 at 23:36
Nestor PereiraNestor Pereira
11
11
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
use .css file.
style="display:none"
Or
if not, go to
design/your_theme/default/layouts
and create here file
local.xml
code of it will be :
<?xml version="1.0" encoding="UTF-8"?>
<layout>
<default>
<remove name="product.clone_prices"/>
</default>
or go to theme that you use, and find <price-box> tag , comment it.
– alexey boltynov
Nov 14 '18 at 9:05
Thanks for the reply but this TAG <price-box> encounter where? What about the .css where is this file?
– Nestor Pereira
Nov 14 '18 at 10:08
ok, let`s go. Pls say to me what theme do you use? because magento first went to your current theme folder, after to daefault and then to base.
– alexey boltynov
Nov 14 '18 at 10:18
do you have already local.xml in your files (layouts) ?
– alexey boltynov
Nov 14 '18 at 10:19
if not, go to design/your_theme/default/layouts and create here file local.xml.
– alexey boltynov
Nov 14 '18 at 10:20
|
show 8 more comments
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
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
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53291063%2fremove-price-on-magento-product-page%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
use .css file.
style="display:none"
Or
if not, go to
design/your_theme/default/layouts
and create here file
local.xml
code of it will be :
<?xml version="1.0" encoding="UTF-8"?>
<layout>
<default>
<remove name="product.clone_prices"/>
</default>
or go to theme that you use, and find <price-box> tag , comment it.
– alexey boltynov
Nov 14 '18 at 9:05
Thanks for the reply but this TAG <price-box> encounter where? What about the .css where is this file?
– Nestor Pereira
Nov 14 '18 at 10:08
ok, let`s go. Pls say to me what theme do you use? because magento first went to your current theme folder, after to daefault and then to base.
– alexey boltynov
Nov 14 '18 at 10:18
do you have already local.xml in your files (layouts) ?
– alexey boltynov
Nov 14 '18 at 10:19
if not, go to design/your_theme/default/layouts and create here file local.xml.
– alexey boltynov
Nov 14 '18 at 10:20
|
show 8 more comments
use .css file.
style="display:none"
Or
if not, go to
design/your_theme/default/layouts
and create here file
local.xml
code of it will be :
<?xml version="1.0" encoding="UTF-8"?>
<layout>
<default>
<remove name="product.clone_prices"/>
</default>
or go to theme that you use, and find <price-box> tag , comment it.
– alexey boltynov
Nov 14 '18 at 9:05
Thanks for the reply but this TAG <price-box> encounter where? What about the .css where is this file?
– Nestor Pereira
Nov 14 '18 at 10:08
ok, let`s go. Pls say to me what theme do you use? because magento first went to your current theme folder, after to daefault and then to base.
– alexey boltynov
Nov 14 '18 at 10:18
do you have already local.xml in your files (layouts) ?
– alexey boltynov
Nov 14 '18 at 10:19
if not, go to design/your_theme/default/layouts and create here file local.xml.
– alexey boltynov
Nov 14 '18 at 10:20
|
show 8 more comments
use .css file.
style="display:none"
Or
if not, go to
design/your_theme/default/layouts
and create here file
local.xml
code of it will be :
<?xml version="1.0" encoding="UTF-8"?>
<layout>
<default>
<remove name="product.clone_prices"/>
</default>
use .css file.
style="display:none"
Or
if not, go to
design/your_theme/default/layouts
and create here file
local.xml
code of it will be :
<?xml version="1.0" encoding="UTF-8"?>
<layout>
<default>
<remove name="product.clone_prices"/>
</default>
edited Nov 14 '18 at 10:26
answered Nov 14 '18 at 8:50
alexey boltynovalexey boltynov
1314
1314
or go to theme that you use, and find <price-box> tag , comment it.
– alexey boltynov
Nov 14 '18 at 9:05
Thanks for the reply but this TAG <price-box> encounter where? What about the .css where is this file?
– Nestor Pereira
Nov 14 '18 at 10:08
ok, let`s go. Pls say to me what theme do you use? because magento first went to your current theme folder, after to daefault and then to base.
– alexey boltynov
Nov 14 '18 at 10:18
do you have already local.xml in your files (layouts) ?
– alexey boltynov
Nov 14 '18 at 10:19
if not, go to design/your_theme/default/layouts and create here file local.xml.
– alexey boltynov
Nov 14 '18 at 10:20
|
show 8 more comments
or go to theme that you use, and find <price-box> tag , comment it.
– alexey boltynov
Nov 14 '18 at 9:05
Thanks for the reply but this TAG <price-box> encounter where? What about the .css where is this file?
– Nestor Pereira
Nov 14 '18 at 10:08
ok, let`s go. Pls say to me what theme do you use? because magento first went to your current theme folder, after to daefault and then to base.
– alexey boltynov
Nov 14 '18 at 10:18
do you have already local.xml in your files (layouts) ?
– alexey boltynov
Nov 14 '18 at 10:19
if not, go to design/your_theme/default/layouts and create here file local.xml.
– alexey boltynov
Nov 14 '18 at 10:20
or go to theme that you use, and find <price-box> tag , comment it.
– alexey boltynov
Nov 14 '18 at 9:05
or go to theme that you use, and find <price-box> tag , comment it.
– alexey boltynov
Nov 14 '18 at 9:05
Thanks for the reply but this TAG <price-box> encounter where? What about the .css where is this file?
– Nestor Pereira
Nov 14 '18 at 10:08
Thanks for the reply but this TAG <price-box> encounter where? What about the .css where is this file?
– Nestor Pereira
Nov 14 '18 at 10:08
ok, let`s go. Pls say to me what theme do you use? because magento first went to your current theme folder, after to daefault and then to base.
– alexey boltynov
Nov 14 '18 at 10:18
ok, let`s go. Pls say to me what theme do you use? because magento first went to your current theme folder, after to daefault and then to base.
– alexey boltynov
Nov 14 '18 at 10:18
do you have already local.xml in your files (layouts) ?
– alexey boltynov
Nov 14 '18 at 10:19
do you have already local.xml in your files (layouts) ?
– alexey boltynov
Nov 14 '18 at 10:19
if not, go to design/your_theme/default/layouts and create here file local.xml.
– alexey boltynov
Nov 14 '18 at 10:20
if not, go to design/your_theme/default/layouts and create here file local.xml.
– alexey boltynov
Nov 14 '18 at 10:20
|
show 8 more comments
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53291063%2fremove-price-on-magento-product-page%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown