简体   繁体   中英

Remove category and subcategory from the product url opencart

I want to remove category and sub-category name from the product URL in the opencart. I have made changes in seo_url.php file. Where I have replaced

$url .= '/' . $query->row['keyword'];

with

$url = '/' . $query->row['keyword'];

But still the url is not changed. Can any one suggest me what to do. I am using opencart version 2.0.3.1

are you sure you've replaced all?

$url .= '/' . $query->row['keyword'];

in seo_url.php file there is 3 matches.

Replace all occurrence of

$url .= '/' . $query->row['keyword'];

with

$url = '/' . $query->row['keyword'];

to remove category from product url. there are only two occurence of it

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM