Hide Vendors Page

Hi,

On google search, I see lists of all vendors (I am using CS cart 4.3.5) under:

www.xyz.com/index.php?dispatch=companies.catalog

I don't want to expose any vendor details.

Also, for specific vendor's page, all contact info including address & phone numbers are displayed, which I dont want to display(www.xyz.com/index.php?dispatch=companies.view&company_id=13).

Is there a way to block this display?

Thanks & Regards,

Fahad

Hello.

You can:

- add new layouts with custom dispatch = companies.catalog and dispatch = Vendors (companies.view) on the manage layouts page with some html block with info about restrict of this page.

- create 301 redirect to 404 page

Thank you.

Hi,

On google search, I see lists of all vendors (I am using CS cart 4.3.5) under:

www.xyz.com/index.php?dispatch=companies.catalog

I don't want to expose any vendor details.

Also, for specific vendor's page, all contact info including address & phone numbers are displayed, which I dont want to display(www.xyz.com/index.php?dispatch=companies.view&company_id=13).

Is there a way to block this display?

Thanks & Regards,

Fahad

Do you want to completely remove these pages or remove them from index?

On vendors detail page I don't want to display vendor's email id phone number, shipping address etc.

Also, can I remove vendors page from index too?

As for vendor details page, please correct the following file. All necessary fields have corresponding names

design/themes/YOUR_THEME/templates/views/companies/view.tpl

As for the index, please add corresponding rules to the robots.txt file or extend the schema of the SEO module:

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

'companies.catalog' => array(
        'noindex' => true,
),
'companies.view' => array(
        'noindex' => true,
),

Then clear the cache

Great it works!

Thanks! :)

You are welcome!

As for vendor details page, please correct the following file. All necessary fields have corresponding names

design/themes/YOUR_THEME/templates/views/companies/view.tpl

As for the index, please add corresponding rules to the robots.txt file or extend the schema of the SEO module:

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

'companies.catalog' => array(
        'noindex' => true,
),
'companies.view' => array(
        'noindex' => true,
),

Then clear the cache

Здравствуйте,

У меня, бестолковой, так и не получилось...

Сначала пробовала писать в robots.txt:

Disallow: /*companies.catalog - яндекс из поиска удалил без проблем
Disallow: /*companies.view - ругается, пишет "Нет оснований для удаления. Сервер не возвращает код 404, индексирование не запрещено ни в robots.txt, ни метатегом noindex"
Потом попыталась заменить
),
'companies.view' => array(
'index' => array('company_id')
на
),
'companies.view' => array(
'noindex' => true, (как вы пишете выше) - тоже ничего не получается, ответ Яндекса тот же...
Сache удаляла...
Объясните, пожалуйста, как это нужно сделать правильно?
С уважением,
Елена

А вы ждали после изменений? Может яндекс не заходил на эту страницу?

А вы ждали после изменений? Может яндекс не заходил на эту страницу?

в Вебмастере захожу в Удалить УРЛ - если даже секунду назад удалила страницу или добавила в роботс.тхт, он зелененьким оповещает, что страница поставлена в очередь на удаление...

А с компаниес.вью - никак, пишет красным: не удаляла, ноиндекс не писала и т.п., а потому "нет оснований на удаления"...

А вы ждали после изменений? Может яндекс не заходил на эту страницу?

Прошу прощения - делаю одно, а удалить из поиска пытаюсь другое, росомаха...

Спасибо!

С уважением,

Елена

hii all
i want to disable vendor name from product detail page
how should i hide it.

thanks.

hii all
i want to disable vendor name from product detail page
how should i hide it.

thanks.

Please add the following code to the CSS section of the Theme editor

.ty-product-block__advanced-option .ty-control-group {
    display: none;
}

Hi,

How to disable vendor name from product detail page, from shipping (including status of product when is sent to customer)?

Thus I want to disconnect all connections between vendors and customers.

Thanks