No Index Specific Products

HI,

how can i have NO INDEX in specific products page?

HI,

how can i have NO INDEX in specific products page?

You can use the My changes module and the following file

design/themes/THEME/templates/addons/my_changes/hooks/index/meta.post.tpl

The content should be similar to

{if $product.product_id == '111' || $product.product_id == '222'}

{/if}

if you added your website in google webmaster tool then there will one option available for you that is robots.txt Tester in that you can add the URL which you want to no index.

With the Custom dynamic search optimization (CDSEO) add-on you can specify a canonical tag for each products (e.g. your main page or any category, etc.) that you don't want to be indexed. With this solution you will not lose the SEO score.

You can use the My changes module and the following file

design/themes/THEME/templates/addons/my_changes/hooks/index/meta.post.tpl

The content should be similar to

{if $product.product_id == '111' || $product.product_id == '222'}

{/if}

Hi, how to modify the code to work with selected pages?

Use

{if $page.page_id == '111' || $page.page_id == '222'}

{/if}

Can set hidden product be forced to be dropped from index, meaning set to noindex nofollow?

E.g.

{if $product.product_id == '111' || $product.product_id == '222'}

{/if}

E.g.

{if $product.product_id == '111' || $product.product_id == '222'}

{/if}

No, I mean all hidden products would become

I sell most products as unique, just one in stock, so eventually I'd like to get rid of them, I think it would be good suggestion for google to remove it this way before deleting.

I sell most products as unique, just one in stock, so eventually I'd like to get rid of them, I think it would be good suggestion for google to remove it this way before deleting.

For hidden items the following condition can be used

{if $product.status == 'H'}

{/if}

For hidden items the following condition can be used

{if $product.status == 'H'}

{/if}

This is perfect, many thanks

It is amazing with the cost of CS cart and support service etc that this basic feature is not included in the package..!

I am trying to noindex pages like

products.bestsellers
products.newest
promotions.list
Could someone advise me on how to noindex despatch pages like this please?
index.php?dispatch=products.newest
I dont want noindex individual products but instead certain pages like these
thanks

You can disable indexation of specific dispatches through the schema

app/addons/seo/schemas/seo/indexation.php