Is it possible to strip parent categories from url like this plugin?
I need it for opencart 4
https://www.opencart.com/index.php?rout ... n_id=27744
They have not updated their version to opencart 4
I need it for opencart 4
https://www.opencart.com/index.php?rout ... n_id=27744
They have not updated their version to opencart 4
This extension doesn't make any sense, there is already a link-canonical generated using the lowest-level category name.
Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig
It makes totally sense to me. I don't want 4-5 subcategories.
Here is an example for categories
example.com/butik/se/catalog/kryddor/curry
and for products it's even longer
example.com/butik/se/product/kryddor/curry/gul-curry
Butik is shop in Swedish so that's where the shop is then se for sweden
Out customers think it's spammy with that url
Here is an example for categories
example.com/butik/se/catalog/kryddor/curry
and for products it's even longer
example.com/butik/se/product/kryddor/curry/gul-curry
Butik is shop in Swedish so that's where the shop is then se for sweden
Out customers think it's spammy with that url
Hi!
Try to find SeoPro controller for this purposes. It's remove all page duplicates and have url cache.
Try to find SeoPro controller for this purposes. It's remove all page duplicates and have url cache.
My FREE extensions in marketplace. [ security | flexibility | speedup ]
Does anyone know how I can fix this?
I don't mind having the /en/ for English and other languages that I use
I don't mind having the /en/ for English and other languages that I use
Hi!
If you want, I can make fix for catalog/controller/startup/seo_url.php, which solve this problem for a cup of coffee.
1. It's not possible to make ocmod, because ocmod deprecated in 4.x
2. It's not possible to make extension with custom event because seo_url it's pre_action.
If you want, I can make fix for catalog/controller/startup/seo_url.php, which solve this problem for a cup of coffee.
1. It's not possible to make ocmod, because ocmod deprecated in 4.x
2. It's not possible to make extension with custom event because seo_url it's pre_action.
My FREE extensions in marketplace. [ security | flexibility | speedup ]
Code: Select all
$is_product = false;
foreach ($parts as $part) {
[$key, $value] = explode('=', $part);
if ($key === 'product_id') {
$is_product = true;
}
if ($is_product && $key === 'path') {
$result = false;
unset($query['path']);
} else {
$result = $this->model_design_seo_url->getSeoUrlByKeyValue((string)$key, (string)$value);
}
if ($result) {
$paths[] = $result;
unset($query[$key]);
}
}
My FREE extensions in marketplace. [ security | flexibility | speedup ]
Is it possible to remove /catalog/ and /product/ and only show the last category you are in and any product?
For example (product) https://www.store.com/eng/dried-strawberries/
and (category) https://www.store.com/eng/whole-coffee-beans/
I could pay for it.
For example (product) https://www.store.com/eng/dried-strawberries/
and (category) https://www.store.com/eng/whole-coffee-beans/
I could pay for it.
Who is online
Users browsing this forum: No registered users and 2 guests