View Single Post
  #6  
Old 02-15-2010, 06:39 PM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,201
 

Default Re: Lowercase clean urls

Well the auto generate works only on products without clean urls so if your products have clean urls assign to them already auto generate won't change anything.
Open skin1/check_clean_url.js and find
Code:
to_field.value = from_field.value.replace(/[\&]/g, '-and-').replace(/[^a-zA-Z0-9._-]/g, '-').replace(/[-]+/g, '-').replace(/-$/, '');
and after add
Code:
to_field.value = to_field.value.toLowerCase();

Now when you add new product in admin and enter product name and then move out of that field the url will be lower cases
__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote