Hi,

Quote Originally Posted by snaple View Post
Where can I find the query string parameters?
If you dump the contents of the $_GET variable you'll see them (that's what this variable holds).

I'd add the following code in a few places to see why your site is losing the sorting/filtering/pagination settings:

var_dump($_GET);

You're looking ot see at what point the "sort" key etc. is being wiped.

The section of the code which was introduced to fix the manufacturers pagination bug was:

PHP Code:
$query_string_parameter_pairs explode('&'$query_string_to_match);
                            
                            foreach (
$query_string_parameter_pairs as
                                    
$current_query_string_parameter_pair) {
                                
$key_and_value explode('='$current_query_string_parameter_pair);
                                
                                unset(
$_GET[$key_and_value[0]]);
                            } 
If you don't have that in init_ceon_uri_mapping.php then you're still using an old, broken version of the module.

Hope that helps!

Quote Originally Posted by snaple View Post
Thanks for the grammar lesson. There have been over 20,000 hits and no one had pointed it out yet!
It's one of those things I notice. :)

Quote Originally Posted by snaple View Post
haha. As for the dropped es after fluorescent-lighting-accessori, the auto generate did it. Perhaps a character max? I don't know. I have corrected it now.
No, so I'm left wondering if something else is up on your site!

Regardless, check the above first please!

All the best...

Conor
ceon