diff --git a/website_seo_kit/README.rst b/website_seo_kit/README.rst new file mode 100755 index 000000000..b149c3724 --- /dev/null +++ b/website_seo_kit/README.rst @@ -0,0 +1,46 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Website SEO Kit +=============== +This module allow to automatically generate meta titles, descriptions, and keywords for each product and product category + +Configuration +============= +The user should be added to the security group: Editor and Designer(Website) inorder to get access to the new menu. + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +Developer: Nihala M K @cybrosys, Contact: odoo@cybrosys.com + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.odoo.com/documentation/user/16.0/legal/licenses/licenses.html) + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/website_seo_kit/__init__.py b/website_seo_kit/__init__.py new file mode 100644 index 000000000..f894fc455 --- /dev/null +++ b/website_seo_kit/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Cybrosys Techno Solutions (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################ +from . import models diff --git a/website_seo_kit/__manifest__.py b/website_seo_kit/__manifest__.py new file mode 100644 index 000000000..19febd940 --- /dev/null +++ b/website_seo_kit/__manifest__.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Cybrosys Techno Solutions (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################ +{ + 'name': "Website SEO Kit", + 'version': '16.0.1.0.0', + 'summary': """website seo kit used for + automatically generate meta titles, descriptions, + and keywords for each product and product category""", + 'description': """This module help to generate seo content""", + 'author': "Cybrosys Techno Solutions", + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'category': 'Website', + 'website': "https://www.cybrosys.com", + 'images': ['static/description/banner.png'], + 'depends': ['base', 'website', 'website_sale'], + 'data': [ + 'security/security_rule.xml', + 'security/ir.model.access.csv', + 'views/seo_categ_view.xml', + 'views/seo_generator_view.xml', + 'views/seo_menu.xml', + ], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} \ No newline at end of file diff --git a/website_seo_kit/doc/RELEASE_NOTES.md b/website_seo_kit/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..db1286837 --- /dev/null +++ b/website_seo_kit/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 17.02.2023 +#### Version 16.0.1.0.0 +#### ADD + +- Initial commit for Website SEO Kit diff --git a/website_seo_kit/models/__init__.py b/website_seo_kit/models/__init__.py new file mode 100644 index 000000000..78fe52f72 --- /dev/null +++ b/website_seo_kit/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Cybrosys Techno Solutions (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################ +from . import website_seo diff --git a/website_seo_kit/models/website_seo.py b/website_seo_kit/models/website_seo.py new file mode 100644 index 000000000..fc7d3dbcc --- /dev/null +++ b/website_seo_kit/models/website_seo.py @@ -0,0 +1,231 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Cybrosys Techno Solutions (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################ +from odoo import api, exceptions, fields, models + + +class WebsiteSeoAttribute(models.Model): + """this module allows to user to give attributes""" + _name = 'website.seo.attributes' + _description = 'Website SEO' + + name = fields.Char(string='Name', required=True, help='Name') + product = fields.Selection([('name', 'Product Name'), + ('description', 'Description for Quotations'), + ('description_sale', 'Product Description'), + ('default_code', 'Internal Reference'), + ('company_id', 'Company Name')], + help='Select Product') + models = fields.Selection([('product', 'Product'), + ('product_category', 'Product Category')], + string='Model', help='Choose your model') + tech_name = fields.Char(string='Technical name') + category = fields.Selection([('name', 'Category Name'), + ('parent_id', 'Category Parent Name'), + ('category_description', + 'Category Description')], + help='Select Product Category') + + @api.constrains('name') + def _check_unique_name(self): + for rec in self: + domain = [('name', '=', rec.name.lower())] + if self.search_count(domain) > 1: + raise exceptions.ValidationError("Name must be unique.") + + +class GenerateSeo(models.Model): + """In this model user can generate seo + based on product or product category""" + _name = 'seo.generate' + _description = 'Generate SEO' + _rec_name = 'model_name' + + model_name = fields.Selection([('product', 'Product'), + ('product_category', 'Product Category')], + string='SEO Meta Configuration For', + help='Select any these model', required=True) + + meta_title_ids = fields.Many2many('website.seo.attributes', + 'title', 'title_id', string='Meta Title', + help='Choose meta tittle', required=True) + + meta_description_ids = fields.Many2many('website.seo.attributes', + 'description', 'description_id', + string='Meta Description', + help='Choose meta description', + required=True) + + attribute_separator = fields.Char(string="Multi Attribute Separator", + default="|", required=True) + company_id = fields.Many2one('res.company', string='Company', + default=lambda self: self.env.company) + + meta_ids = fields.Many2many('website.seo.attributes', 'meta', 'meta_id', + string='Title !') + state = fields.Selection([ + ('activated', 'Activated'), ('deactivated', 'Deactivated')], + string='Status', default='deactivated') + + @api.onchange('model_name') + def _onchange_model_name(self): + self.meta_title_ids = False + self.meta_description_ids = False + model_name = self.model_name + if model_name == 'product': + self.meta_ids = [rec.id for rec in + self.env['website.seo.attributes'].search( + [('models', '=', 'product')])] + elif model_name == 'product_category': + self.meta_ids = [rec.id for rec in + self.env['website.seo.attributes'].search( + [('models', '=', 'product_category')])] + + def action_save_seo_info(self): + """save the seo content""" + for rec in self.search([]): + if rec.id == self.id: + self.write({'state': 'activated'}) + else: + rec.write({'state': 'deactivated'}) + if self.model_name == 'product': + if self.meta_title_ids: + products = self.env['product.template'].search_read( + [], fields=self.meta_title_ids.mapped('product')) + meta_title = [] + for product in products: + sep = self.attribute_separator + string = str(sep).join( + str(product[x]) for x in product.keys() if x != 'id') + string = string.translate({ + ord(i): None for i in "

(),'

"}) + values = { + 'string': string, + 'id': product['id'] + } + pro = self.env['product.template'].browse(values['id']) + pro.write({ + 'website_meta_title': values['string'], + 'website_meta_keywords': pro.name + }) + meta_title.append(values) + + if self.meta_description_ids: + products = self.env['product.template'].search_read( + [], fields=self.meta_description_ids.mapped('product')) + meta_description = [] + for product in products: + sep = self.attribute_separator + string = str(sep).join( + str(product[x]) for x in product.keys() if x != 'id') + string = string.translate( + {ord(i): None for i in "

(),'

"}) + values = { + 'string': string, + 'id': product['id'] + } + pro = self.env['product.template'].browse(values['id']) + pro.write({ + 'website_meta_description': values['string'], + }) + meta_description.append(values) + return { + 'type': 'ir.actions.client', + 'tag': 'display_notification', + 'target': 'new', + 'params': { + 'message': ("Successfully " + "generated the seo for all products"), + 'type': 'success', + 'sticky': False, + } + } + + elif self.model_name == 'product_category': + if self.meta_title_ids: + products = self.env['product.public.category'].search_read( + [('is_auto_seo', '=', True)], + fields=self.meta_title_ids.mapped('category')) + meta_categ_title = [] + for product in products: + sep = self.attribute_separator + string = str(sep).join( + str(product[x]) for x in product.keys() if x != 'id') + string = string.translate( + {ord(i): None for i in "

(),'

"}) + values = { + 'string': string, + 'id': product['id'] + } + pro = self.env['product.public.category'].browse( + values['id']) + for rec in pro: + rec.write({ + 'website_meta_title': values['string'], + 'website_meta_keywords': pro.name + }) + meta_categ_title.append(values) + + if self.meta_description_ids: + products = self.env['product.public.category'].search_read( + [('is_auto_seo', '=', True)], + fields= self.meta_description_ids.mapped('category')) + meta_categ_description = [] + for product in products: + sep = self.attribute_separator + string = str(sep).join( + str(product[x]) for x in product.keys() if x != 'id') + string = string.translate( + {ord(i): None for i in "

(),'

"}) + values = { + 'string': string, + 'id': product['id'] + } + pro = self.env['product.public.category'].browse(values['id']) + pro.write({ + 'website_meta_description': values['string'], + }) + meta_categ_description.append(values) + + return { + 'type': 'ir.actions.client', + 'tag': 'display_notification', + 'target': 'new', + 'params': { + 'message': + ("Successfully created the SEO only for product" + " groups with auto SEO enabled."), + 'type': 'success', + 'sticky': False, + } + } + + +class SeoPublicCategory(models.Model): + """here user can include category by enabling is_auto_seo field""" + _inherit = 'product.public.category' + + is_auto_seo = fields.Boolean(string="Auto Update SEO", + help='enable for generate seo content ' + 'automatically for this category') + category_description = fields.Text(string='Description For This Category', + help='Description For This Category', + required=True) diff --git a/website_seo_kit/security/ir.model.access.csv b/website_seo_kit/security/ir.model.access.csv new file mode 100644 index 000000000..05a34e551 --- /dev/null +++ b/website_seo_kit/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_website_seo_attributes,model_website_seo_attributes,model_website_seo_attributes,website.group_website_designer,1,1,1,1 +access_seo_generate,model_seo_generate,model_seo_generate,website.group_website_designer,1,1,1,1 diff --git a/website_seo_kit/security/security_rule.xml b/website_seo_kit/security/security_rule.xml new file mode 100644 index 000000000..0ad8e0c11 --- /dev/null +++ b/website_seo_kit/security/security_rule.xml @@ -0,0 +1,8 @@ + + + + multi company access seo + + ['|',('company_id','=',False),('company_id', 'in', company_ids)] + + \ No newline at end of file diff --git a/website_seo_kit/static/description/assets/icons/check.png b/website_seo_kit/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/website_seo_kit/static/description/assets/icons/check.png differ diff --git a/website_seo_kit/static/description/assets/icons/chevron.png b/website_seo_kit/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/website_seo_kit/static/description/assets/icons/chevron.png differ diff --git a/website_seo_kit/static/description/assets/icons/cogs.png b/website_seo_kit/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/website_seo_kit/static/description/assets/icons/cogs.png differ diff --git a/website_seo_kit/static/description/assets/icons/consultation.png b/website_seo_kit/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/website_seo_kit/static/description/assets/icons/consultation.png differ diff --git a/website_seo_kit/static/description/assets/icons/ecom-black.png b/website_seo_kit/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/website_seo_kit/static/description/assets/icons/ecom-black.png differ diff --git a/website_seo_kit/static/description/assets/icons/education-black.png b/website_seo_kit/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/website_seo_kit/static/description/assets/icons/education-black.png differ diff --git a/website_seo_kit/static/description/assets/icons/hotel-black.png b/website_seo_kit/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/website_seo_kit/static/description/assets/icons/hotel-black.png differ diff --git a/website_seo_kit/static/description/assets/icons/license.png b/website_seo_kit/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/website_seo_kit/static/description/assets/icons/license.png differ diff --git a/website_seo_kit/static/description/assets/icons/lifebuoy.png b/website_seo_kit/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/website_seo_kit/static/description/assets/icons/lifebuoy.png differ diff --git a/website_seo_kit/static/description/assets/icons/manufacturing-black.png b/website_seo_kit/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/website_seo_kit/static/description/assets/icons/manufacturing-black.png differ diff --git a/website_seo_kit/static/description/assets/icons/pos-black.png b/website_seo_kit/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/website_seo_kit/static/description/assets/icons/pos-black.png differ diff --git a/website_seo_kit/static/description/assets/icons/puzzle.png b/website_seo_kit/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/website_seo_kit/static/description/assets/icons/puzzle.png differ diff --git a/website_seo_kit/static/description/assets/icons/restaurant-black.png b/website_seo_kit/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/website_seo_kit/static/description/assets/icons/restaurant-black.png differ diff --git a/website_seo_kit/static/description/assets/icons/service-black.png b/website_seo_kit/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/website_seo_kit/static/description/assets/icons/service-black.png differ diff --git a/website_seo_kit/static/description/assets/icons/trading-black.png b/website_seo_kit/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/website_seo_kit/static/description/assets/icons/trading-black.png differ diff --git a/website_seo_kit/static/description/assets/icons/training.png b/website_seo_kit/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/website_seo_kit/static/description/assets/icons/training.png differ diff --git a/website_seo_kit/static/description/assets/icons/update.png b/website_seo_kit/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/website_seo_kit/static/description/assets/icons/update.png differ diff --git a/website_seo_kit/static/description/assets/icons/user.png b/website_seo_kit/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/website_seo_kit/static/description/assets/icons/user.png differ diff --git a/website_seo_kit/static/description/assets/icons/wrench.png b/website_seo_kit/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/website_seo_kit/static/description/assets/icons/wrench.png differ diff --git a/website_seo_kit/static/description/assets/misc/categories.png b/website_seo_kit/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/website_seo_kit/static/description/assets/misc/categories.png differ diff --git a/website_seo_kit/static/description/assets/misc/check-box.png b/website_seo_kit/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/website_seo_kit/static/description/assets/misc/check-box.png differ diff --git a/website_seo_kit/static/description/assets/misc/compass.png b/website_seo_kit/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/website_seo_kit/static/description/assets/misc/compass.png differ diff --git a/website_seo_kit/static/description/assets/misc/corporate.png b/website_seo_kit/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/website_seo_kit/static/description/assets/misc/corporate.png differ diff --git a/website_seo_kit/static/description/assets/misc/customer-support.png b/website_seo_kit/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/website_seo_kit/static/description/assets/misc/customer-support.png differ diff --git a/website_seo_kit/static/description/assets/misc/cybrosys-logo.png b/website_seo_kit/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/website_seo_kit/static/description/assets/misc/cybrosys-logo.png differ diff --git a/website_seo_kit/static/description/assets/misc/features.png b/website_seo_kit/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/website_seo_kit/static/description/assets/misc/features.png differ diff --git a/website_seo_kit/static/description/assets/misc/logo.png b/website_seo_kit/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/website_seo_kit/static/description/assets/misc/logo.png differ diff --git a/website_seo_kit/static/description/assets/misc/pictures.png b/website_seo_kit/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/website_seo_kit/static/description/assets/misc/pictures.png differ diff --git a/website_seo_kit/static/description/assets/misc/pie-chart.png b/website_seo_kit/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/website_seo_kit/static/description/assets/misc/pie-chart.png differ diff --git a/website_seo_kit/static/description/assets/misc/right-arrow.png b/website_seo_kit/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/website_seo_kit/static/description/assets/misc/right-arrow.png differ diff --git a/website_seo_kit/static/description/assets/misc/star.png b/website_seo_kit/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/website_seo_kit/static/description/assets/misc/star.png differ diff --git a/website_seo_kit/static/description/assets/misc/support.png b/website_seo_kit/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/website_seo_kit/static/description/assets/misc/support.png differ diff --git a/website_seo_kit/static/description/assets/misc/whatsapp.png b/website_seo_kit/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/website_seo_kit/static/description/assets/misc/whatsapp.png differ diff --git a/website_seo_kit/static/description/assets/modules/barcode.png b/website_seo_kit/static/description/assets/modules/barcode.png new file mode 100644 index 000000000..f14dc60c5 Binary files /dev/null and b/website_seo_kit/static/description/assets/modules/barcode.png differ diff --git a/website_seo_kit/static/description/assets/modules/dashboard.png b/website_seo_kit/static/description/assets/modules/dashboard.png new file mode 100644 index 000000000..17c14989e Binary files /dev/null and b/website_seo_kit/static/description/assets/modules/dashboard.png differ diff --git a/website_seo_kit/static/description/assets/modules/product_creation.png b/website_seo_kit/static/description/assets/modules/product_creation.png new file mode 100644 index 000000000..fd1f87699 Binary files /dev/null and b/website_seo_kit/static/description/assets/modules/product_creation.png differ diff --git a/website_seo_kit/static/description/assets/modules/receipt.png b/website_seo_kit/static/description/assets/modules/receipt.png new file mode 100644 index 000000000..d1d3775d6 Binary files /dev/null and b/website_seo_kit/static/description/assets/modules/receipt.png differ diff --git a/website_seo_kit/static/description/assets/modules/service.png b/website_seo_kit/static/description/assets/modules/service.png new file mode 100644 index 000000000..c247ba6ac Binary files /dev/null and b/website_seo_kit/static/description/assets/modules/service.png differ diff --git a/website_seo_kit/static/description/assets/modules/time_based.png b/website_seo_kit/static/description/assets/modules/time_based.png new file mode 100644 index 000000000..4e7befe1f Binary files /dev/null and b/website_seo_kit/static/description/assets/modules/time_based.png differ diff --git a/website_seo_kit/static/description/assets/screenshots/seo_00.png b/website_seo_kit/static/description/assets/screenshots/seo_00.png new file mode 100644 index 000000000..223a85561 Binary files /dev/null and b/website_seo_kit/static/description/assets/screenshots/seo_00.png differ diff --git a/website_seo_kit/static/description/assets/screenshots/v16_hero.gif b/website_seo_kit/static/description/assets/screenshots/v16_hero.gif new file mode 100644 index 000000000..94f929b83 Binary files /dev/null and b/website_seo_kit/static/description/assets/screenshots/v16_hero.gif differ diff --git a/website_seo_kit/static/description/assets/screenshots/web1.png b/website_seo_kit/static/description/assets/screenshots/web1.png new file mode 100644 index 000000000..0f4c6544e Binary files /dev/null and b/website_seo_kit/static/description/assets/screenshots/web1.png differ diff --git a/website_seo_kit/static/description/assets/screenshots/web2.png b/website_seo_kit/static/description/assets/screenshots/web2.png new file mode 100644 index 000000000..35101be9e Binary files /dev/null and b/website_seo_kit/static/description/assets/screenshots/web2.png differ diff --git a/website_seo_kit/static/description/assets/screenshots/web3.png b/website_seo_kit/static/description/assets/screenshots/web3.png new file mode 100644 index 000000000..163c89ce3 Binary files /dev/null and b/website_seo_kit/static/description/assets/screenshots/web3.png differ diff --git a/website_seo_kit/static/description/assets/screenshots/web4.png b/website_seo_kit/static/description/assets/screenshots/web4.png new file mode 100644 index 000000000..95824936c Binary files /dev/null and b/website_seo_kit/static/description/assets/screenshots/web4.png differ diff --git a/website_seo_kit/static/description/assets/screenshots/web5.png b/website_seo_kit/static/description/assets/screenshots/web5.png new file mode 100644 index 000000000..536dacc25 Binary files /dev/null and b/website_seo_kit/static/description/assets/screenshots/web5.png differ diff --git a/website_seo_kit/static/description/assets/screenshots/web6.png b/website_seo_kit/static/description/assets/screenshots/web6.png new file mode 100644 index 000000000..a560c16fa Binary files /dev/null and b/website_seo_kit/static/description/assets/screenshots/web6.png differ diff --git a/website_seo_kit/static/description/banner.png b/website_seo_kit/static/description/banner.png new file mode 100644 index 000000000..6e487b48c Binary files /dev/null and b/website_seo_kit/static/description/banner.png differ diff --git a/website_seo_kit/static/description/icon.png b/website_seo_kit/static/description/icon.png new file mode 100644 index 000000000..2f6bbf9b2 Binary files /dev/null and b/website_seo_kit/static/description/icon.png differ diff --git a/website_seo_kit/static/description/index.html b/website_seo_kit/static/description/index.html new file mode 100644 index 000000000..777189768 --- /dev/null +++ b/website_seo_kit/static/description/index.html @@ -0,0 +1,537 @@ +
+ +
+ +
+
+ Community +
+
+
+ +
+
+
+ +

+ WEBSITE SEO KIT +

+

Using the module, you may automatically generate meta titles, descriptions, and keywords for each product and product group.

+ + +
+
+
+
+ + +
+
+ +
+

Explore This + Module

+
+ + + + +
+
+ +
+

Overview +

+
+
+
+ Here, the module assists you in automatically generating meta titles, descriptions, and keywords for each product and product group. + For instance, with odoo you have to specify each meta title, meta description, and meta keyword individually. However, with this software you can create meta contents with only one click. +
+
+ + + +
+
+ +
+

Features

+
+
+
+
+ + Create attributes from Odoo backend +
+
+ + Add metadata for the products and product groups +
+
+
+ +
+ + Create website content that is optimised for search +
+
+
+ + + +
+
+ +
+

Screenshots +

+
+
+
+ +
+

Create Attributes + +

+

Go to Website -> Site -> SEO Attribute + -> Here you can Create SEO attribute +

+ + +
+ +
+

Generate SEO Content +

+

Here you can generate seo content

+ + +

For the help of the statusbar user can easily identify the active SEO.

+ +
+ +
+

Optimize SEO

+

here the result +

+ + + +
+ + + + +
+
+ +
+

Related + Products +

+
+
+
+ +
+
+ + + + +
+
+ +
+

Our Services +

+
+ +
+
+
+
+ +
+
+ Odoo + Customization
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Support
+
+ + +
+
+ +
+
+ Hire + Odoo + Developer
+
+ +
+
+ +
+
+ Odoo + Integration
+
+ +
+
+ +
+
+ Odoo + Migration
+
+ + +
+
+ +
+
+ Odoo + Consultancy
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+ +
+ + + + + +
+
+ +
+

Our + Industries +

+
+ +
+
+
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+ +
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+ +
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+ +
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+ +
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+ +
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+ +
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+ +
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

+
+
+
+
+ + + + +
+
+ +
+

Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/website_seo_kit/views/seo_categ_view.xml b/website_seo_kit/views/seo_categ_view.xml new file mode 100644 index 000000000..1ccdd65ed --- /dev/null +++ b/website_seo_kit/views/seo_categ_view.xml @@ -0,0 +1,32 @@ + + + + + product.public.category.view.form.inherit.website.seo.kit + product.public.category + + + + + + + + + +
+ Warning: If you un-check the option to Auto Update + SEO then during Automatic Generation of SEO + information, then seo information of such category + will not be updated. +
+
+ + + +
+
+
+
+
\ No newline at end of file diff --git a/website_seo_kit/views/seo_generator_view.xml b/website_seo_kit/views/seo_generator_view.xml new file mode 100644 index 000000000..79f3dff67 --- /dev/null +++ b/website_seo_kit/views/seo_generator_view.xml @@ -0,0 +1,72 @@ + + + + + seo.generate.view.form + seo.generate + +
+
+
+ + +
+
+
+ + + seo.generate.view.tree + seo.generate + + + + + + + + + + + + + Website SEO + seo.generate + tree,form + + +
\ No newline at end of file diff --git a/website_seo_kit/views/seo_menu.xml b/website_seo_kit/views/seo_menu.xml new file mode 100644 index 000000000..331155943 --- /dev/null +++ b/website_seo_kit/views/seo_menu.xml @@ -0,0 +1,28 @@ + + + + + website.seo.attributes.view.tree + website.seo.attributes + + + + + + + + + + + + Website SEO + website.seo.attributes + tree + + +