https://github.com/softcommerceltd/magento-seosuite
SEO Suite for Magento 2
https://github.com/softcommerceltd/magento-seosuite
Last synced: 5 months ago
JSON representation
SEO Suite for Magento 2
- Host: GitHub
- URL: https://github.com/softcommerceltd/magento-seosuite
- Owner: softcommerceltd
- License: other
- Created: 2023-07-14T12:36:14.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2025-11-27T19:55:20.000Z (6 months ago)
- Last Synced: 2025-11-30T07:41:08.703Z (6 months ago)
- Language: PHP
- Size: 68.4 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# SEO Suite extension for Magento 2
The core purpose of this extension is to provide on-page SEO functionality that are missing in original Magento packages.
## Features
- Use hreflang to tell search engines about the variations of your content;
## Compatibility
- Open Source >= 2.4.0
- Commerce On Prem (EE) >= 2.4.0
- Commerce On Cloud (ECE) >= 2.4.0
## Installation
Using composer
```
composer require softcommerce/module-seosuite
```
## Post Installation
```sh
# Enable the module
bin/magento module:enable SoftCommerce_SeoSuite
```
In production mode:
```sh
# compile & generate static files
bin/magento deploy:mode:set production
```
In development mode:
```
bin/magento setup:di:compile
```
## Usage
### Generate URL rewrites for Category
Command options:
```
bin/magento seosuite:category:generate [id|-i]
```
Example:
```sh
# Regenerate URL rewrites for all categories:
bin/magento seosuite:category:generate
# Generate URL rewrites for particular categories with IDs 25 & 26:
bin/magento seosuite:category:generate -i 25,26
```
### Generate URL rewrites for Product
> Please note, products with visibility *__Not Visible Individually__* [id: 1] are excluded from URL rewrite generation.
Command options:
``
bin/magento seosuite:product:generate [id|-i]
``
```sh
# Regenerate URL rewrites for all products:
bin/magento seosuite:product:generate
# Generate URL rewrites for particular products with IDs 25 & 26:
bin/magento seosuite:product:generate -i 25,26
```
### Delete URL rewrites
Command options:
``
bin/magento seosuite:delete [entity|-e || store|-s]
``
```sh
# Delete URL rewrites for entity: product with store IDs: 1 and 2
bin/magento seosuite:delete -e product -s 1,2
# Delete URL rewrites for product and category entities with store IDs 1, 2 and 3
bin/magento seosuite:delete -e product,category -s 1,2,3
```
## Support
Soft Commerce Ltd
support@softcommerce.io
## License
Each source file included in this package is licensed under OSL 3.0.
[Open Software License (OSL 3.0)](https://opensource.org/licenses/osl-3.0.php).
Please see `LICENSE.txt` for full details of the OSL 3.0 license.
## Thanks for dropping by