Dani1989 Posted August 29, 2019 Share Posted August 29, 2019 (edited) Hello, Can I get some help with this problem? I am working on a site that I upgraded from PS1.7.3 to 1.7.6.1 and when you select a different combination than the standard one (on a product with combinations) it just keeps resetting to the default one. Have a look at here to see what I mean and click on "Complete Rol 10 Meter (10% Korting)". I use a module that removes the IDs from page URLs and if I disable that one and reset the SEO rewrite rules to the default, then it seems like it works. So the problem is in there somewhere. However, I can't change the URL structure and links as this is an existing website that has already been indexed in Google. Thanks for your help EDIT: Here is my problem. I need to make this code in FrontController.php compatible with PS1.7.6.1 I don't have the skills for that. Can someone help out? ``` /* * module: prestashop_clean_urls * date: 2017-04-21 13:52:42 * version: 1.0.0.beta */ protected function canonicalRedirection($canonical_url = '') { $_unfiltered_GET = $_GET; $_GET = array_filter($_GET, function ($v) { return '_rewrite' === substr($v, -8); }); parent::canonicalRedirection($canonical_url); $_GET = $_unfiltered_GET; } ``` Edited August 29, 2019 by Dani1989 found the problem - addition to question (see edit history) Link to comment Share on other sites More sharing options...
chemocycling Posted March 20, 2020 Share Posted March 20, 2020 hi i have tha same problem ! did you solve this ? thanks Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now