Testimonials not found by google?

Hi all,



We have a lot of nice testimonials full of keywords, but it seems like google is only finding the text that is on the homepage and not the testimonial page itself.



Is this normal behavior?



Thanks - Flo

Got the answer from CS:



Testimonials are not indexed by Google System by default because this ability does not exist in the standard CS-Cart installation. In order to implement such a feature to your CS-Cart installation, please replace this part of the code in the “func.php” file located in the “addons/seo” directory of your CS-Cart installation:



:

$indexed_dispatches = array(

‘index.index’ => array(),

‘sitemap.view’ => array(),

‘products.view’ => array(‘index’ => array(‘product_id’)),

‘categories.catalog’ => array(),

‘categories.view’ => array(

‘index’ => array(‘category_id’),

‘noindex’ => array(‘features_hash’)

),

‘pages.view’ => array(‘index’ => array(‘page_id’)),

‘companies.view’ => array(‘index’ => array(‘company_id’)),

‘product_features.view’ => array(

‘index’ => array(‘variant_id’),

‘noindex’ => array(‘features_hash’),

),

);



with this one:



$indexed_dispatches = array(

‘index.index’ => array(),

‘sitemap.view’ => array(),

‘products.view’ => array(‘index’ => array(‘product_id’)),

‘categories.catalog’ => array(),

‘categories.view’ => array(

‘index’ => array(‘category_id’),

‘noindex’ => array(‘features_hash’)

),

‘pages.view’ => array(‘index’ => array(‘page_id’)),

‘companies.view’ => array(‘index’ => array(‘company_id’)),

‘product_features.view’ => array(

‘index’ => array(‘variant_id’),

‘noindex’ => array(‘features_hash’),

),

‘discussion.view’ => array(),

);