diff --git a/website_seo_kit/README.rst b/website_seo_kit/README.rst new file mode 100755 index 000000000..ee5c02169 --- /dev/null +++ b/website_seo_kit/README.rst @@ -0,0 +1,48 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://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: (V17) Mufeeda Shirin, + (V16) Nihala M K, + 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..10dc5f807 --- /dev/null +++ b/website_seo_kit/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-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..501d3836a --- /dev/null +++ b/website_seo_kit/__manifest__.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-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': '17.0.1.0.0', + 'summary': """This module help to generate seo content""", + 'description': """Website seo kit used for automatically generate meta titles, + descriptions, and keywords for each product and product category""", + 'author': "Cybrosys Techno Solutions", + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'category': 'Website', + 'website': "https://www.cybrosys.com", + 'images': ['static/description/banner.jpg'], + 'depends': ['base', 'website', 'website_sale'], + 'data': [ + 'security/ir_rule.xml', + 'security/ir.model.access.csv', + 'views/product_public_category_form_view.xml', + 'views/generate_seo_views.xml', + 'views/website_seo_attributes_views.xml', + ], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/website_seo_kit/doc/RELEASE_NOTES.md b/website_seo_kit/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..f0345ea5f --- /dev/null +++ b/website_seo_kit/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 05.04.2024 +#### Version 17.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..ade13a5d6 --- /dev/null +++ b/website_seo_kit/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-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 generate_seo +from . import product_public_category +from . import website_seo diff --git a/website_seo_kit/models/generate_seo.py b/website_seo_kit/models/generate_seo.py new file mode 100644 index 000000000..d8477995e --- /dev/null +++ b/website_seo_kit/models/generate_seo.py @@ -0,0 +1,189 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-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, fields, models + + +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): + """Configure meta ids when the model is changed""" + 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""" + self.state = 'activated' + for record in self.search([('id', '!=', self.id)]): + record.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, + 'next': {'type': 'ir.actions.act_window_close'}, + + } + } + + 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, + 'next': {'type': 'ir.actions.act_window_close'}, + } + } + + def action_deactivate_seo(self): + """function used to deactivate the SEO in Archive button click""" + self.state = 'deactivated' diff --git a/website_seo_kit/models/product_public_category.py b/website_seo_kit/models/product_public_category.py new file mode 100644 index 000000000..295aeab27 --- /dev/null +++ b/website_seo_kit/models/product_public_category.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-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 fields, models + + +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 in 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..2558056fe --- /dev/null +++ b/website_seo_kit/models/website_seo.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-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', string="Product") + models = fields.Selection([('product', 'Product'), + ('product_category', 'Product Category')], + string='Model', help='Choose your model') + category = fields.Selection([('name', 'Category Name'), + ('parent_id', 'Category Parent Name'), + ('category_description', + 'Category Description')], + help='Select Product Category', + string="Select Product Category") + + @api.constrains('name') + def _check_unique_name(self): + """Check for unique name""" + for record in self: + domain = [('name', '=', record.name.lower())] + if self.search_count(domain) > 1: + raise exceptions.ValidationError("Name must be unique.") 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..12bd0fc6a --- /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/ir_rule.xml b/website_seo_kit/security/ir_rule.xml new file mode 100644 index 000000000..4fd29db49 --- /dev/null +++ b/website_seo_kit/security/ir_rule.xml @@ -0,0 +1,9 @@ + + + + + multi company access seo + + ['|',('company_id','=',False),('company_id', 'in', company_ids)] + + 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/Cybrosys R.png b/website_seo_kit/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/website_seo_kit/static/description/assets/misc/Cybrosys R.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/1.png b/website_seo_kit/static/description/assets/modules/1.png new file mode 100644 index 000000000..d324f5993 Binary files /dev/null and b/website_seo_kit/static/description/assets/modules/1.png differ diff --git a/website_seo_kit/static/description/assets/modules/2.png b/website_seo_kit/static/description/assets/modules/2.png new file mode 100644 index 000000000..0dea4f332 Binary files /dev/null and b/website_seo_kit/static/description/assets/modules/2.png differ diff --git a/website_seo_kit/static/description/assets/modules/3.jpg b/website_seo_kit/static/description/assets/modules/3.jpg new file mode 100644 index 000000000..5ae24843e Binary files /dev/null and b/website_seo_kit/static/description/assets/modules/3.jpg differ diff --git a/website_seo_kit/static/description/assets/modules/4.jpg b/website_seo_kit/static/description/assets/modules/4.jpg new file mode 100644 index 000000000..115e1eee1 Binary files /dev/null and b/website_seo_kit/static/description/assets/modules/4.jpg differ diff --git a/website_seo_kit/static/description/assets/modules/5.jpg b/website_seo_kit/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..08bbafeb6 Binary files /dev/null and b/website_seo_kit/static/description/assets/modules/5.jpg differ diff --git a/website_seo_kit/static/description/assets/modules/6.png b/website_seo_kit/static/description/assets/modules/6.png new file mode 100644 index 000000000..a5299d338 Binary files /dev/null and b/website_seo_kit/static/description/assets/modules/6.png differ diff --git a/website_seo_kit/static/description/assets/screenshots/hero.gif b/website_seo_kit/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..5bf44e3e1 Binary files /dev/null and b/website_seo_kit/static/description/assets/screenshots/hero.gif differ diff --git a/website_seo_kit/static/description/assets/screenshots/web_seo_kit_1.png b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_1.png new file mode 100644 index 000000000..2994516e6 Binary files /dev/null and b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_1.png differ diff --git a/website_seo_kit/static/description/assets/screenshots/web_seo_kit_10.png b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_10.png new file mode 100644 index 000000000..3571d9c6e Binary files /dev/null and b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_10.png differ diff --git a/website_seo_kit/static/description/assets/screenshots/web_seo_kit_2.png b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_2.png new file mode 100644 index 000000000..47eed2064 Binary files /dev/null and b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_2.png differ diff --git a/website_seo_kit/static/description/assets/screenshots/web_seo_kit_3.png b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_3.png new file mode 100644 index 000000000..7015f4ad4 Binary files /dev/null and b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_3.png differ diff --git a/website_seo_kit/static/description/assets/screenshots/web_seo_kit_4.png b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_4.png new file mode 100644 index 000000000..a4a97e527 Binary files /dev/null and b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_4.png differ diff --git a/website_seo_kit/static/description/assets/screenshots/web_seo_kit_5.png b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_5.png new file mode 100644 index 000000000..40abb9b68 Binary files /dev/null and b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_5.png differ diff --git a/website_seo_kit/static/description/assets/screenshots/web_seo_kit_6.png b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_6.png new file mode 100644 index 000000000..146c36245 Binary files /dev/null and b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_6.png differ diff --git a/website_seo_kit/static/description/assets/screenshots/web_seo_kit_7.png b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_7.png new file mode 100644 index 000000000..e09756ed9 Binary files /dev/null and b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_7.png differ diff --git a/website_seo_kit/static/description/assets/screenshots/web_seo_kit_8.png b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_8.png new file mode 100644 index 000000000..05f5cb55a Binary files /dev/null and b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_8.png differ diff --git a/website_seo_kit/static/description/assets/screenshots/web_seo_kit_9.png b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_9.png new file mode 100644 index 000000000..8d1d6fece Binary files /dev/null and b/website_seo_kit/static/description/assets/screenshots/web_seo_kit_9.png differ diff --git a/website_seo_kit/static/description/banner.jpg b/website_seo_kit/static/description/banner.jpg new file mode 100644 index 000000000..ccea280e9 Binary files /dev/null and b/website_seo_kit/static/description/banner.jpg 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..b11cd41d3 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..2b564712e --- /dev/null +++ b/website_seo_kit/static/description/index.html @@ -0,0 +1,807 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+
+
+
+
+

+ Website SEO Kit

+

+ Can automatically generate meta titles, descriptions, and keywords for each product and product + group. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Automatically generating meta titles, descriptions, and keywords

+
+
+
+
+
+
+ +
+
+

+ Create meta contents with only one click.

+
+
+
+
+
+
+ +
+
+

+ Easy website optimization

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

+ Create SEO Attributes

+

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

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

+ Here you can Create SEO attribute

+
+
+
+
+
+
+ +
+
+

+ Generate SEO Content

+

Go to Website -> Site -> Generate SEO ->We can generate SEO content for Product ,Select the attributes for title and + descriptions +

+
+
+
+
+
+
+ +
+
+

+ Generate SEO Content

+

Go to Website -> Site -> Generate SEO ->We can generate SEO content for Product Category ,Select the attributes for title and + descriptions.

+
+
+
+
+
+
+ +
+
+

+ Deactivate SEO +

+

With the help of Archive button you can deactivate the SEO.

+
+
+
+
+
+
+ +
+
+

+ Activation Status +

+

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

+
+
+
+
+
+
+ +
+
+

+ SEO configuration in Category

+

+ We can configure the SEO updates in product categories +

+
+
+
+ +
+
+
+ +
+
+

+ Optimize SEO

+

Go to Website -> Site -> Optimize SEO

+
+
+
+ +
+
+
+ +
+
+

+ Optimized SEO

+

Here is the result of optimized SEO for Product

+
+
+
+
+
+
+ +
+
+

+ Optimized SEO

+

Here is the result of optimized SEO for Category

+
+
+
+
+
+
+
    +
  • + Create attributes from Odoo backend. +
  • +
  • + Add metadata for the products and product groups + Orders. +
  • +
  • + Create website content that is optimised for search +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:05th April 2024 +
+

+ Initial Commit for Website SEO Kit

+
+
+
+
+
+
+
+

+ Related Products

+
+
+ +
+
+

+ Our Services

+ +
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire + Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo + Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

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 + 99456767686 +
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/website_seo_kit/views/generate_seo_views.xml b/website_seo_kit/views/generate_seo_views.xml new file mode 100644 index 000000000..f2c19e4cb --- /dev/null +++ b/website_seo_kit/views/generate_seo_views.xml @@ -0,0 +1,76 @@ + + + + + seo.generate.view.form + seo.generate + +
+
+
+ + +
+
+
+ + + seo.generate.view.tree + seo.generate + + + + + + + + + + + + Generate SEO + seo.generate + tree,form + + +
diff --git a/website_seo_kit/views/product_public_category_form_view.xml b/website_seo_kit/views/product_public_category_form_view.xml new file mode 100644 index 000000000..024d3bebc --- /dev/null +++ b/website_seo_kit/views/product_public_category_form_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. +
+
+ + + +
+
+
+
+
diff --git a/website_seo_kit/views/website_seo_attributes_views.xml b/website_seo_kit/views/website_seo_attributes_views.xml new file mode 100644 index 000000000..b2aa46148 --- /dev/null +++ b/website_seo_kit/views/website_seo_attributes_views.xml @@ -0,0 +1,28 @@ + + + + + website.seo.attributes.view.tree + website.seo.attributes + + + + + + + + + + + + SEO Attributes + website.seo.attributes + tree + + +