Jump to content

SEO of custom pages


RaWMotorsports

Recommended Posts

Hello,

I have created a custom page on my prestashop 1.6

This custom page generate more than 700+ page depending on customer choices.

 

How can I define one title and one description to each of the 700+ page ?

Prestashop only allow me to have a global title and global description on SEO&URL tab, it this causes problem to google who find 700+ duplicate title and description... of course...

 

Thank you for your help.

Link to comment
Share on other sites

You'll need to generate the titles and descriptions in the controller code and then overwrite the default title and description. For example:

$this->context->smarty->assign(array(
    'meta_title' => $meta_title,
    'meta_description' => $meta_description)
);
  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...