How To Change The Vendor Register Page To "index"

Hello



Does something know how to change the vendor register page “noindex” to “index” please?

because with noindex, Google will be never index this page, and not easy to get more vendor.



please see the image for detail!



Thank



Franck

noindex apply to a vendor page.jpg

app\addons\seo\schemas\seo\indexation.php



replace:



if (fn_allowed_for('MULTIVENDOR')) {
$schema['companies.apply_for_vendor'] = array(
'noindex' => true
);
}




with



/*
if (fn_allowed_for('MULTIVENDOR')) {
$schema['companies.apply_for_vendor'] = array(
'noindex' => true
);
}
*/




Then clear cache

[quote name='eComLabs' timestamp='1439531501' post='226723']

app\addons\seo\schemas\seo\indexation.php



replace:



if (fn_allowed_for('MULTIVENDOR')) {
$schema['companies.apply_for_vendor'] = array(
'noindex' => true
);
}




with



/*
if (fn_allowed_for('MULTIVENDOR')) {
$schema['companies.apply_for_vendor'] = array(
'noindex' => true
);
}
*/




Then clear cache

[/quote]Hi, I have this: “objects.php” on the seo file only, there is don't have the indexation.php in the ftp and file on the admin backoffice, can you check again if something wrong please?



Thank a lot!



Franck

In the old versions open the objects.php file and replace:



'indexed_pages' => array(
'companies.view' => array(
'index' => array('company_id')
),
)




with



'indexed_pages' => array(
'companies.view' => array(
'index' => array('company_id')
),
'companies.apply_for_vendor' => array()
)




(!) Not tested

[quote name='eComLabs' timestamp='1439803889' post='226943'] In the old versions open the objects.php file and replace: 'indexed_pages' => array( 'companies.view' => array( 'index' => array('company_id') ), ) with 'indexed_pages' => array( 'companies.view' => array( 'index' => array('company_id') ), 'companies.apply_for_vendor' => array() ) (!) Not tested [/quote]Thank for your help!!!

You are welcome!