Osclass forums

Support forums => Tips, tricks, and tutorials => Topic started by: merry88 on July 20, 2018, 01:53:07 pm

Title: Help Please - remove underscore from links.. Possible?
Post by: merry88 on July 20, 2018, 01:53:07 pm
I would like to implement this:
Quote
    So to change these underscores to hyphen, you need to go to your osclass database and run SQL query with following:

UPDATE oc_t_category_description
SET s_slug = REPLACE(s_slug, '_', '-')

And that’s it. All categories and subcategories have now hyphens in between.   

I need step guide from a good Samaritan here on where exactly to replace code. Thanks

Does this even work?
Title: Re: Help Please - remove underscore from links.. Possible?
Post by: WEBmods on July 20, 2018, 03:18:29 pm
Hello,

I will try to write a short guide for this but be careful, you don't want to mess something in the database.

Code: [Select]
UPDATE prefixt_category_description SET s_slug = REPLACE(s_slug, '_', '-')
Regards.
Title: Re: Help Please - remove underscore from links.. Possible?
Post by: merry88 on July 21, 2018, 08:21:32 am
Thank very much!