User tests: Successful: Unsuccessful:
Pull Request resolves #
This PR adds a new schema.org plugin for LocalBusiness type.
Prerequisite:
Download the latest Joomla 6.2 Nightly Build from developer.joomla.org/nightly-builds.html
Download the following two language files from mortezahonar/joomla-cms:
administrator/language/en-GB/plg_schemaorg_localbusiness.iniadministrator/language/en-GB/plg_schemaorg_localbusiness.sys.iniCopy both files to the same path on your Joomla installation:
administrator/language/en-GB/
Edit the following SQL files inside your nightly build package:
installation/sql/mysql/base.sqlinstallation/sql/postgresql/base.sqlFind this section:
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),Replace with:
(0, 'plg_schemaorg_localbusiness', 'plugin', 'localbusiness', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 10, 0),Step 3: Modify ExtensionHelper.php
Edit the following file in your nightly build package:
libraries/src/Extension/ExtensionHelper.php
Find this section :
// Core plugin extensions - schemaorg
['plugin', 'article', 'schemaorg', 0],
['plugin', 'blogposting', 'schemaorg', 0],
['plugin', 'book', 'schemaorg', 0],
['plugin', 'custom', 'schemaorg', 0],
['plugin', 'event', 'schemaorg', 0],
['plugin', 'jobposting', 'schemaorg', 0],
['plugin', 'localbusiness', 'schemaorg', 0],
['plugin', 'organization', 'schemaorg', 0],
['plugin', 'person', 'schemaorg', 0],
['plugin', 'recipe', 'schemaorg', 0],Replace the organization line with:
['plugin', 'organization', 'schemaorg', 0],with
['plugin', 'localbusiness', 'schemaorg', 0],
['plugin', 'organization', 'schemaorg', 0],Download the localbusiness plugin folder from mortezahonar/joomla-cms/plugins/schemaorg/localbusiness and place it here:
plugins/schemaorg/localbusiness
The folder should contain:
plugins/schemaorg/localbusiness/
├── localbusiness.xml
├── forms/
│ └── schemaorg.xml
├── services/
│ └── provider.php
└── src/
└── Extension/
└── Localbusiness.php
Install Joomla using your modified nightly build package.
<script type="application/ld+json"> with @type: "LocalBusiness"The LocalBusiness schema type appears in the dropdown, form fields are displayed, data is saved to the database and appears as JSON-LD in the frontend with @type: "LocalBusiness".
Please select:
Documentation link for guide.joomla.org:
No documentation changes for guide.joomla.org needed
Pull Request link for manual.joomla.org:
No documentation changes for manual.joomla.org needed
| Status | New | ⇒ | Pending |
| Category | ⇒ | Administration Language & Strings Front End Plugins |
| Labels |
Added:
Language Change
PR-6.2-dev
|
||
| Status | Pending | ⇒ | Closed |
| Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2026-04-26 17:44:14 |
| Closed_By | ⇒ | mortezahonar |
| Status | Closed | ⇒ | New |
| Closed_Date | 2026-04-26 17:44:14 | ⇒ | |
| Closed_By | mortezahonar | ⇒ |
| Status | New | ⇒ | Pending |
Hi @mortezahonar - thank you for this PR, potentially great addition to Joomla. You mention:
Install the plugin by copying the localbusiness folder to /plugins/schemaorg/ or install via zip.
I could not find a zip file or a localbusiness folder that you are referring to. Could you please provide that attachment and update the TESTING INSTRUCTIONS? thank you so much.
Thanks, Emmanuel. Yes, unfortunately the file hasn't been uploaded.
I'll put the download link but please let me know if the link is accessible to you or not.
Thanks, Emmanuel. Yes, unfortunately the file hasn't been uploaded.
I'll put the download link but please let me know if the link is accessible to you or not.
Thanks, Emmanuel. Yes, unfortunately the file hasn't been uploaded.
I'll put the download link but please let me know if the link is accessible to you or not.
Thanks, Emmanuel. Yes, unfortunately the file hasn't been uploaded.
I'll put the download link but please let me know if the link is accessible to you or not.
I have tested this item ✅ successfully
This pr needs to have sql changes in the installation sql so that the plugin is avilable on new installs and update sql for updated sites
| Category | Administration Language & Strings Front End Plugins | ⇒ | Administration Language & Strings SQL Installation Front End Plugins |
| Category | Administration Language & Strings Front End Plugins SQL Installation | ⇒ | Administration Language & Strings SQL Installation Postgresql Front End Plugins |
This pr needs to have sql changes in the installation sql so that the plugin is avilable on new installs and update sql for updated sites
Are the mysql/base.sql and postgresql/base.sql files what you meant?
This pr needs to have sql changes in the installation sql so that the plugin is avilable on new installs and update sql for updated sites
@brianteeman
Are the mysql/base.sql and postgresql/base.sql files what you meant?
Hi @mortezahonar - thank you for this PR, potentially great addition to Joomla. You mention:
Install the plugin by copying the localbusiness folder to /plugins/schemaorg/ or install via zip.
I could not find a zip file or a localbusiness folder that you are referring to. Could you please provide that attachment and update the TESTING INSTRUCTIONS? thank you so much.
Prerequisite:
Download the latest Joomla 6.2 Nightly Build from developer.joomla.org/nightly-builds.html
Download the following two language files from mortezahonar/joomla-cms:
administrator/language/en-GB/plg_schemaorg_localbusiness.iniadministrator/language/en-GB/plg_schemaorg_localbusiness.sys.iniCopy both files to the same path on your Joomla installation:
administrator/language/en-GB/
Edit the following SQL files inside your nightly build package:
installation/sql/mysql/base.sqlinstallation/sql/postgresql/base.sqlFind this section:
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),Replace with:
(0, 'plg_schemaorg_localbusiness', 'plugin', 'localbusiness', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 10, 0),Step 3: Modify ExtensionHelper.php
Edit the following file in your nightly build package:
libraries/src/Extension/ExtensionHelper.php
Find this section (around lines 283-292):
// Core plugin extensions - schemaorg
['plugin', 'article', 'schemaorg', 0],
['plugin', 'blogposting', 'schemaorg', 0],
['plugin', 'book', 'schemaorg', 0],
['plugin', 'custom', 'schemaorg', 0],
['plugin', 'event', 'schemaorg', 0],
['plugin', 'jobposting', 'schemaorg', 0],
['plugin', 'localbusiness', 'schemaorg', 0],
['plugin', 'organization', 'schemaorg', 0],
['plugin', 'person', 'schemaorg', 0],
['plugin', 'recipe', 'schemaorg', 0],Replace the organization line with:
['plugin', 'localbusiness', 'schemaorg', 0],
['plugin', 'organization', 'schemaorg', 0],Download the localbusiness plugin folder from mortezahonar/joomla-cms/plugins/schemaorg/localbusiness and place it here:
plugins/schemaorg/localbusiness
The folder should contain:
plugins/schemaorg/localbusiness/
├── localbusiness.xml
├── forms/
│ └── schemaorg.xml
├── services/
│ └── provider.php
└── src/
└── Extension/
└── Localbusiness.php
Install Joomla using your modified nightly build package.
<script type="application/ld+json"> with @type: "LocalBusiness"The LocalBusiness schema type appears in the dropdown, form fields are displayed, data is saved to the database and appears as JSON-LD in the frontend with @type: "LocalBusiness".
Note: I apologize for not being able to upload the files directly to GitHub at this time due to internet restrictions. I will upload them as soon as possible. Thank you for your understanding.
Hi @mortezahonar - thank you for this PR, potentially great addition to Joomla. You mention:
Install the plugin by copying the localbusiness folder to /plugins/schemaorg/ or install via zip.
I could not find a zip file or a localbusiness folder that you are referring to. Could you please provide that attachment and update the TESTING INSTRUCTIONS? thank you so much.
Prerequisite:
Download the latest Joomla 6.2 Nightly Build from developer.joomla.org/nightly-builds.html
Download the following two language files from mortezahonar/joomla-cms:
administrator/language/en-GB/plg_schemaorg_localbusiness.iniadministrator/language/en-GB/plg_schemaorg_localbusiness.sys.iniCopy both files to the same path on your Joomla installation:
administrator/language/en-GB/
Edit the following SQL files inside your nightly build package:
installation/sql/mysql/base.sqlinstallation/sql/postgresql/base.sqlFind this section:
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),Replace with:
(0, 'plg_schemaorg_localbusiness', 'plugin', 'localbusiness', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 10, 0),Step 3: Modify ExtensionHelper.php
Edit the following file in your nightly build package:
libraries/src/Extension/ExtensionHelper.php
Find this section :
// Core plugin extensions - schemaorg
['plugin', 'article', 'schemaorg', 0],
['plugin', 'blogposting', 'schemaorg', 0],
['plugin', 'book', 'schemaorg', 0],
['plugin', 'custom', 'schemaorg', 0],
['plugin', 'event', 'schemaorg', 0],
['plugin', 'jobposting', 'schemaorg', 0],
['plugin', 'localbusiness', 'schemaorg', 0],
['plugin', 'organization', 'schemaorg', 0],
['plugin', 'person', 'schemaorg', 0],
['plugin', 'recipe', 'schemaorg', 0],Replace the organization line with:
['plugin', 'localbusiness', 'schemaorg', 0],
['plugin', 'organization', 'schemaorg', 0],Download the localbusiness plugin folder from mortezahonar/joomla-cms/plugins/schemaorg/localbusiness and place it here:
plugins/schemaorg/localbusiness
The folder should contain:
plugins/schemaorg/localbusiness/
├── localbusiness.xml
├── forms/
│ └── schemaorg.xml
├── services/
│ └── provider.php
└── src/
└── Extension/
└── Localbusiness.php
Install Joomla using your modified nightly build package.
<script type="application/ld+json"> with @type: "LocalBusiness"The LocalBusiness schema type appears in the dropdown, form fields are displayed, data is saved to the database and appears as JSON-LD in the frontend with @type: "LocalBusiness".
Note: I apologize for not being able to upload the files directly to GitHub at this time due to internet restrictions. I will upload them as soon as possible. Thank you for your understanding.
Hi @mortezahonar - thank you for this PR, potentially great addition to Joomla. You mention:
Install the plugin by copying the localbusiness folder to /plugins/schemaorg/ or install via zip.
I could not find a zip file or a localbusiness folder that you are referring to. Could you please provide that attachment and update the TESTING INSTRUCTIONS? thank you so much.
Prerequisite:
Download the latest Joomla 6.2 Nightly Build from developer.joomla.org/nightly-builds.html
Download the following two language files from mortezahonar/joomla-cms:
administrator/language/en-GB/plg_schemaorg_localbusiness.iniadministrator/language/en-GB/plg_schemaorg_localbusiness.sys.iniCopy both files to the same path on your Joomla installation:
administrator/language/en-GB/
Edit the following SQL files inside your nightly build package:
installation/sql/mysql/base.sqlinstallation/sql/postgresql/base.sqlFind this section:
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),Replace with:
(0, 'plg_schemaorg_localbusiness', 'plugin', 'localbusiness', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 10, 0),Step 3: Modify ExtensionHelper.php
Edit the following file in your nightly build package:
libraries/src/Extension/ExtensionHelper.php
Find this section :
// Core plugin extensions - schemaorg
['plugin', 'article', 'schemaorg', 0],
['plugin', 'blogposting', 'schemaorg', 0],
['plugin', 'book', 'schemaorg', 0],
['plugin', 'custom', 'schemaorg', 0],
['plugin', 'event', 'schemaorg', 0],
['plugin', 'jobposting', 'schemaorg', 0],
['plugin', 'localbusiness', 'schemaorg', 0],
['plugin', 'organization', 'schemaorg', 0],
['plugin', 'person', 'schemaorg', 0],
['plugin', 'recipe', 'schemaorg', 0],Replace the organization line with:
['plugin', 'organization', 'schemaorg', 0],with
['plugin', 'localbusiness', 'schemaorg', 0],
['plugin', 'organization', 'schemaorg', 0],Download the localbusiness plugin folder from mortezahonar/joomla-cms/plugins/schemaorg/localbusiness and place it here:
plugins/schemaorg/localbusiness
The folder should contain:
plugins/schemaorg/localbusiness/
├── localbusiness.xml
├── forms/
│ └── schemaorg.xml
├── services/
│ └── provider.php
└── src/
└── Extension/
└── Localbusiness.php
Install Joomla using your modified nightly build package.
<script type="application/ld+json"> with @type: "LocalBusiness"The LocalBusiness schema type appears in the dropdown, form fields are displayed, data is saved to the database and appears as JSON-LD in the frontend with @type: "LocalBusiness".
Note: I apologize for not being able to upload the files directly to GitHub at this time due to internet restrictions. I will upload them as soon as possible. Thank you for your understanding.
Hi @mortezahonar - thank you for this PR, potentially great addition to Joomla. You mention:
Install the plugin by copying the localbusiness folder to /plugins/schemaorg/ or install via zip.
I could not find a zip file or a localbusiness folder that you are referring to. Could you please provide that attachment and update the TESTING INSTRUCTIONS? thank you so much.
Prerequisite:
Download the latest Joomla 6.2 Nightly Build from developer.joomla.org/nightly-builds.html
Download the following two language files from mortezahonar/joomla-cms:
administrator/language/en-GB/plg_schemaorg_localbusiness.iniadministrator/language/en-GB/plg_schemaorg_localbusiness.sys.iniCopy both files to the same path on your Joomla installation:
administrator/language/en-GB/
Edit the following SQL files inside your nightly build package:
installation/sql/mysql/base.sqlinstallation/sql/postgresql/base.sqlFind this section:
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),Replace with:
(0, 'plg_schemaorg_localbusiness', 'plugin', 'localbusiness', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 10, 0),Step 3: Modify ExtensionHelper.php
Edit the following file in your nightly build package:
libraries/src/Extension/ExtensionHelper.php
Find this section :
// Core plugin extensions - schemaorg
['plugin', 'article', 'schemaorg', 0],
['plugin', 'blogposting', 'schemaorg', 0],
['plugin', 'book', 'schemaorg', 0],
['plugin', 'custom', 'schemaorg', 0],
['plugin', 'event', 'schemaorg', 0],
['plugin', 'jobposting', 'schemaorg', 0],
['plugin', 'localbusiness', 'schemaorg', 0],
['plugin', 'organization', 'schemaorg', 0],
['plugin', 'person', 'schemaorg', 0],
['plugin', 'recipe', 'schemaorg', 0],Replace the organization line with:
['plugin', 'organization', 'schemaorg', 0],with
['plugin', 'localbusiness', 'schemaorg', 0],
['plugin', 'organization', 'schemaorg', 0],Download the localbusiness plugin folder from mortezahonar/joomla-cms/plugins/schemaorg/localbusiness and place it here:
plugins/schemaorg/localbusiness
The folder should contain:
plugins/schemaorg/localbusiness/
├── localbusiness.xml
├── forms/
│ └── schemaorg.xml
├── services/
│ └── provider.php
└── src/
└── Extension/
└── Localbusiness.php
Install Joomla using your modified nightly build package.
<script type="application/ld+json"> with @type: "LocalBusiness"The LocalBusiness schema type appears in the dropdown, form fields are displayed, data is saved to the database and appears as JSON-LD in the frontend with @type: "LocalBusiness".
Note: I apologize for not being able to upload the files directly to GitHub at this time due to internet restrictions. I will upload them as soon as possible. Thank you for your understanding.
Testing instructions have been revised and are now fully updated.
Hi @mortezahonar - thank you for this PR, potentially great addition to Joomla. You mention:
Install the plugin by copying the localbusiness folder to /plugins/schemaorg/ or install via zip.
I could not find a zip file or a localbusiness folder that you are referring to. Could you please provide that attachment and update the TESTING INSTRUCTIONS? thank you so much.
Prerequisite:
Download the latest Joomla 6.2 Nightly Build from developer.joomla.org/nightly-builds.html
Download the following two language files from mortezahonar/joomla-cms:
administrator/language/en-GB/plg_schemaorg_localbusiness.iniadministrator/language/en-GB/plg_schemaorg_localbusiness.sys.iniCopy both files to the same path on your Joomla installation:
administrator/language/en-GB/
Edit the following SQL files inside your nightly build package:
installation/sql/mysql/base.sqlinstallation/sql/postgresql/base.sqlFind this section:
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),Replace with:
(0, 'plg_schemaorg_localbusiness', 'plugin', 'localbusiness', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 10, 0),Step 3: Modify ExtensionHelper.php
Edit the following file in your nightly build package:
libraries/src/Extension/ExtensionHelper.php
Find this section :
// Core plugin extensions - schemaorg
['plugin', 'article', 'schemaorg', 0],
['plugin', 'blogposting', 'schemaorg', 0],
['plugin', 'book', 'schemaorg', 0],
['plugin', 'custom', 'schemaorg', 0],
['plugin', 'event', 'schemaorg', 0],
['plugin', 'jobposting', 'schemaorg', 0],
['plugin', 'localbusiness', 'schemaorg', 0],
['plugin', 'organization', 'schemaorg', 0],
['plugin', 'person', 'schemaorg', 0],
['plugin', 'recipe', 'schemaorg', 0],Replace the organization line with:
['plugin', 'organization', 'schemaorg', 0],with
['plugin', 'localbusiness', 'schemaorg', 0],
['plugin', 'organization', 'schemaorg', 0],Download the localbusiness plugin folder from mortezahonar/joomla-cms/plugins/schemaorg/localbusiness and place it here:
plugins/schemaorg/localbusiness
The folder should contain:
plugins/schemaorg/localbusiness/
├── localbusiness.xml
├── forms/
│ └── schemaorg.xml
├── services/
│ └── provider.php
└── src/
└── Extension/
└── Localbusiness.php
Install Joomla using your modified nightly build package.
<script type="application/ld+json"> with @type: "LocalBusiness"The LocalBusiness schema type appears in the dropdown, form fields are displayed, data is saved to the database and appears as JSON-LD in the frontend with @type: "LocalBusiness".
Note: I apologize for not being able to upload the files directly to GitHub at this time due to internet restrictions. I will upload them as soon as possible. Thank you for your understanding.
Note: Testing instructions updated based on @alikon's guidance in the next comment.
Hi @mortezahonar - thank you for this PR, potentially great addition to Joomla. You mention:
Install the plugin by copying the localbusiness folder to /plugins/schemaorg/ or install via zip.
I could not find a zip file or a localbusiness folder that you are referring to. Could you please provide that attachment and update the TESTING INSTRUCTIONS? thank you so much.
Prerequisite:
Download the latest Joomla 6.2 Nightly Build from developer.joomla.org/nightly-builds.html
Download the following two language files from mortezahonar/joomla-cms:
administrator/language/en-GB/plg_schemaorg_localbusiness.iniadministrator/language/en-GB/plg_schemaorg_localbusiness.sys.iniCopy both files to the same path on your Joomla installation:
administrator/language/en-GB/
Edit the following SQL files inside your nightly build package:
installation/sql/mysql/base.sqlinstallation/sql/postgresql/base.sqlFind this section:
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),Replace with:
(0, 'plg_schemaorg_localbusiness', 'plugin', 'localbusiness', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 10, 0),Step 3: Modify ExtensionHelper.php
Edit the following file in your nightly build package:
libraries/src/Extension/ExtensionHelper.php
Find this section :
// Core plugin extensions - schemaorg
['plugin', 'article', 'schemaorg', 0],
['plugin', 'blogposting', 'schemaorg', 0],
['plugin', 'book', 'schemaorg', 0],
['plugin', 'custom', 'schemaorg', 0],
['plugin', 'event', 'schemaorg', 0],
['plugin', 'jobposting', 'schemaorg', 0],
['plugin', 'localbusiness', 'schemaorg', 0],
['plugin', 'organization', 'schemaorg', 0],
['plugin', 'person', 'schemaorg', 0],
['plugin', 'recipe', 'schemaorg', 0],Replace the organization line with:
['plugin', 'organization', 'schemaorg', 0],with
['plugin', 'localbusiness', 'schemaorg', 0],
['plugin', 'organization', 'schemaorg', 0],Download the localbusiness plugin folder from mortezahonar/joomla-cms/plugins/schemaorg/localbusiness and place it here:
plugins/schemaorg/localbusiness
The folder should contain:
plugins/schemaorg/localbusiness/
├── localbusiness.xml
├── forms/
│ └── schemaorg.xml
├── services/
│ └── provider.php
└── src/
└── Extension/
└── Localbusiness.php
Install Joomla using your modified nightly build package.
<script type="application/ld+json"> with @type: "LocalBusiness"The LocalBusiness schema type appears in the dropdown, form fields are displayed, data is saved to the database and appears as JSON-LD in the frontend with @type: "LocalBusiness".
Note: I apologize for not being able to upload the files directly to GitHub at this time due to internet restrictions. I will upload them as soon as possible. Thank you for your understanding.
** Testing instructions updated based on @alikon's guidance in the next comment.**
Hi @mortezahonar - thank you for this PR, potentially great addition to Joomla. You mention:
Install the plugin by copying the localbusiness folder to /plugins/schemaorg/ or install via zip.
I could not find a zip file or a localbusiness folder that you are referring to. Could you please provide that attachment and update the TESTING INSTRUCTIONS? thank you so much.
Prerequisite:
Download the latest Joomla 6.2 Nightly Build from developer.joomla.org/nightly-builds.html
Download the following two language files from mortezahonar/joomla-cms:
administrator/language/en-GB/plg_schemaorg_localbusiness.iniadministrator/language/en-GB/plg_schemaorg_localbusiness.sys.iniCopy both files to the same path on your Joomla installation:
administrator/language/en-GB/
Edit the following SQL files inside your nightly build package:
installation/sql/mysql/base.sqlinstallation/sql/postgresql/base.sqlFind this section:
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),Replace with:
(0, 'plg_schemaorg_localbusiness', 'plugin', 'localbusiness', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 10, 0),Step 3: Modify ExtensionHelper.php
Edit the following file in your nightly build package:
libraries/src/Extension/ExtensionHelper.php
Find this section :
// Core plugin extensions - schemaorg
['plugin', 'article', 'schemaorg', 0],
['plugin', 'blogposting', 'schemaorg', 0],
['plugin', 'book', 'schemaorg', 0],
['plugin', 'custom', 'schemaorg', 0],
['plugin', 'event', 'schemaorg', 0],
['plugin', 'jobposting', 'schemaorg', 0],
['plugin', 'localbusiness', 'schemaorg', 0],
['plugin', 'organization', 'schemaorg', 0],
['plugin', 'person', 'schemaorg', 0],
['plugin', 'recipe', 'schemaorg', 0],Replace the organization line with:
['plugin', 'organization', 'schemaorg', 0],with
['plugin', 'localbusiness', 'schemaorg', 0],
['plugin', 'organization', 'schemaorg', 0],Download the localbusiness plugin folder from mortezahonar/joomla-cms/plugins/schemaorg/localbusiness and place it here:
plugins/schemaorg/localbusiness
The folder should contain:
plugins/schemaorg/localbusiness/
├── localbusiness.xml
├── forms/
│ └── schemaorg.xml
├── services/
│ └── provider.php
└── src/
└── Extension/
└── Localbusiness.php
Install Joomla using your modified nightly build package.
<script type="application/ld+json"> with @type: "LocalBusiness"The LocalBusiness schema type appears in the dropdown, form fields are displayed, data is saved to the database and appears as JSON-LD in the frontend with @type: "LocalBusiness".
Note: I apologize for not being able to upload the files directly to GitHub at this time due to internet restrictions. I will upload them as soon as possible. Thank you for your understanding.
Testing instructions updated based on @alikon's guidance in the next comment.
Hi @mortezahonar - thank you for this PR, potentially great addition to Joomla. You mention:
Install the plugin by copying the localbusiness folder to /plugins/schemaorg/ or install via zip.
I could not find a zip file or a localbusiness folder that you are referring to. Could you please provide that attachment and update the TESTING INSTRUCTIONS? thank you so much.
Prerequisite:
Download the latest Joomla 6.2 Nightly Build from developer.joomla.org/nightly-builds.html
Download the following two language files from mortezahonar/joomla-cms:
administrator/language/en-GB/plg_schemaorg_localbusiness.iniadministrator/language/en-GB/plg_schemaorg_localbusiness.sys.iniCopy both files to the same path on your Joomla installation:
administrator/language/en-GB/
Edit the following SQL files inside your nightly build package:
installation/sql/mysql/base.sqlinstallation/sql/postgresql/base.sqlFind this section:
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),Replace with:
(0, 'plg_schemaorg_localbusiness', 'plugin', 'localbusiness', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 10, 0),Download the localbusiness plugin folder from mortezahonar/joomla-cms and place it here:
plugins/schemaorg/localbusiness
The folder should contain:
plugins/schemaorg/localbusiness/
├── localbusiness.xml
├── forms/
│ └── schemaorg.xml
├── services/
│ └── provider.php
└── src/
└── Extension/
└── Localbusiness.php
Install Joomla using your modified nightly build package.
<script type="application/ld+json"> with @type: "LocalBusiness"The LocalBusiness schema type appears in the dropdown, form fields are displayed, data is saved to the database and appears as JSON-LD in the frontend with @type: "LocalBusiness".
Note: I apologize for not being able to upload the files directly to GitHub at this time due to internet restrictions. I will upload them as soon as possible. Thank you for your understanding.
Hi @mortezahonar - thank you for this PR, potentially great addition to Joomla. You mention:
Install the plugin by copying the localbusiness folder to /plugins/schemaorg/ or install via zip.
I could not find a zip file or a localbusiness folder that you are referring to. Could you please provide that attachment and update the TESTING INSTRUCTIONS? thank you so much.
Prerequisite:
Download the latest Joomla 6.2 Nightly Build from developer.joomla.org/nightly-builds.html
Download the following two language files from mortezahonar/joomla-cms:
administrator/language/en-GB/plg_schemaorg_localbusiness.iniadministrator/language/en-GB/plg_schemaorg_localbusiness.sys.iniCopy both files to the same path on your Joomla installation:
administrator/language/en-GB/
Edit the following SQL files inside your nightly build package:
installation/sql/mysql/base.sqlinstallation/sql/postgresql/base.sqlFind this section:
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),Replace with:
(0, 'plg_schemaorg_localbusiness', 'plugin', 'localbusiness', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 10, 0),Download the localbusiness plugin folder from mortezahonar/joomla-cms and place it here:
plugins/schemaorg/localbusiness
The folder should contain:
plugins/schemaorg/localbusiness/
├── localbusiness.xml
├── forms/
│ └── schemaorg.xml
├── services/
│ └── provider.php
└── src/
└── Extension/
└── Localbusiness.php
Install Joomla using your modified nightly build package.
<script type="application/ld+json"> with @type: "LocalBusiness"The LocalBusiness schema type appears in the dropdown, form fields are displayed, data is saved to the database and appears as JSON-LD in the frontend with @type: "LocalBusiness".
Note: I apologize for not being able to upload the files directly to GitHub at this time due to internet restrictions. I will upload them as soon as possible. Thank you for your understanding.
Hi @mortezahonar - thank you for this PR, potentially great addition to Joomla. You mention:
Install the plugin by copying the localbusiness folder to /plugins/schemaorg/ or install via zip.
I could not find a zip file or a localbusiness folder that you are referring to. Could you please provide that attachment and update the TESTING INSTRUCTIONS? thank you so much.
Prerequisite:
Download the latest Joomla 6.2 Nightly Build from developer.joomla.org/nightly-builds.html
Download the following two language files from mortezahonar/joomla-cms:
administrator/language/en-GB/plg_schemaorg_localbusiness.iniadministrator/language/en-GB/plg_schemaorg_localbusiness.sys.iniCopy both files to the same path on your Joomla installation:
administrator/language/en-GB/
Edit the following SQL files inside your nightly build package:
installation/sql/mysql/base.sqlinstallation/sql/postgresql/base.sqlFind this section:
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),Replace with:
(0, 'plg_schemaorg_localbusiness', 'plugin', 'localbusiness', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 10, 0),Download the localbusiness plugin folder from mortezahonar/joomla-cms/plugins/schemaorg/localbusiness and place it here:
plugins/schemaorg/localbusiness
The folder should contain:
plugins/schemaorg/localbusiness/
├── localbusiness.xml
├── forms/
│ └── schemaorg.xml
├── services/
│ └── provider.php
└── src/
└── Extension/
└── Localbusiness.php
Install Joomla using your modified nightly build package.
<script type="application/ld+json"> with @type: "LocalBusiness"The LocalBusiness schema type appears in the dropdown, form fields are displayed, data is saved to the database and appears as JSON-LD in the frontend with @type: "LocalBusiness".
Note: I apologize for not being able to upload the files directly to GitHub at this time due to internet restrictions. I will upload them as soon as possible. Thank you for your understanding.
Hi @mortezahonar - thank you for this PR, potentially great addition to Joomla. You mention:
Install the plugin by copying the localbusiness folder to /plugins/schemaorg/ or install via zip.
I could not find a zip file or a localbusiness folder that you are referring to. Could you please provide that attachment and update the TESTING INSTRUCTIONS? thank you so much.
Prerequisite:
Download the latest Joomla 6.2 Nightly Build from developer.joomla.org/nightly-builds.html
Download the following two language files from mortezahonar/joomla-cms:
administrator/language/en-GB/plg_schemaorg_localbusiness.iniadministrator/language/en-GB/plg_schemaorg_localbusiness.sys.iniCopy both files to the same path on your Joomla installation:
administrator/language/en-GB/
Edit the following SQL files inside your nightly build package:
installation/sql/mysql/base.sqlinstallation/sql/postgresql/base.sqlFind this section:
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),Replace with:
(0, 'plg_schemaorg_localbusiness', 'plugin', 'localbusiness', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 10, 0),Download the localbusiness plugin folder from mortezahonar/joomla-cms/plugins/schemaorg/localbusiness and place it here:
plugins/schemaorg/localbusiness
The folder should contain:
plugins/schemaorg/localbusiness/
├── localbusiness.xml
├── forms/
│ └── schemaorg.xml
├── services/
│ └── provider.php
└── src/
└── Extension/
└── Localbusiness.php
Install Joomla using your modified nightly build package.
<script type="application/ld+json"> with @type: "LocalBusiness"The LocalBusiness schema type appears in the dropdown, form fields are displayed, data is saved to the database and appears as JSON-LD in the frontend with @type: "LocalBusiness".
Note: I apologize for not being able to upload the files directly to GitHub at this time due to internet restrictions. I will upload them as soon as possible. Thank you for your understanding.
Hi @mortezahonar - thank you for this PR, potentially great addition to Joomla. You mention:
Install the plugin by copying the localbusiness folder to /plugins/schemaorg/ or install via zip.
I could not find a zip file or a localbusiness folder that you are referring to. Could you please provide that attachment and update the TESTING INSTRUCTIONS? thank you so much.
Prerequisite:
Download the latest Joomla 6.2 Nightly Build from developer.joomla.org/nightly-builds.html
Download the following two language files from mortezahonar/joomla-cms:
administrator/language/en-GB/plg_schemaorg_localbusiness.iniadministrator/language/en-GB/plg_schemaorg_localbusiness.sys.iniCopy both files to the same path on your Joomla installation:
administrator/language/en-GB/
Edit the following SQL files inside your nightly build package:
installation/sql/mysql/base.sqlinstallation/sql/postgresql/base.sqlFind this section:
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),Replace with:
(0, 'plg_schemaorg_localbusiness', 'plugin', 'localbusiness', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 6, 0),
(0, 'plg_schemaorg_organization', 'plugin', 'organization', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 7, 0),
(0, 'plg_schemaorg_person', 'plugin', 'person', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 8, 0),
(0, 'plg_schemaorg_recipe', 'plugin', 'recipe', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 9, 0),
(0, 'plg_schemaorg_custom', 'plugin', 'custom', 'schemaorg', 0, 1, 1, 0, 1, '', '{}', '', 10, 0),Download the localbusiness plugin folder from mortezahonar/joomla-cms/plugins/schemaorg/localbusiness and place it here:
plugins/schemaorg/localbusiness
The folder should contain:
plugins/schemaorg/localbusiness/
├── localbusiness.xml
├── forms/
│ └── schemaorg.xml
├── services/
│ └── provider.php
└── src/
└── Extension/
└── Localbusiness.php
Install Joomla using your modified nightly build package.
<script type="application/ld+json"> with @type: "LocalBusiness"The LocalBusiness schema type appears in the dropdown, form fields are displayed, data is saved to the database and appears as JSON-LD in the frontend with @type: "LocalBusiness".
Note: I apologize for not being able to upload the files directly to GitHub at this time due to internet restrictions. I will upload them as soon as possible. Thank you for your understanding.
We understand the internet restrictions you are facing at this time and hope they will be over soon.
you need to add this new plugin here
joomla-cms/libraries/src/Extension/ExtensionHelper.php
Lines 283 to 292 in 7e8527d
| Category | Administration Language & Strings Front End Plugins SQL Installation Postgresql | ⇒ | Administration Language & Strings SQL Installation Postgresql Libraries Front End Plugins |
you need to add this new plugin here
joomla-cms/libraries/src/Extension/ExtensionHelper.php
Lines 283 to 292 in 7e8527d
Thank you for the guidance, @alikon.
The change has been committed.
you need to add this new plugin here
joomla-cms/libraries/src/Extension/ExtensionHelper.php
Lines 283 to 292 in 7e8527d
Thank you for the guidance, @alikon.
The change has been committed.
| Category | Administration Language & Strings Front End Plugins SQL Installation Postgresql Libraries | ⇒ | Administration Language & Strings SQL Installation Postgresql Front End Plugins |
| Category | Administration Language & Strings Front End Plugins SQL Installation Postgresql | ⇒ | Administration Language & Strings SQL Installation Postgresql Libraries Front End Plugins |
| Status | Pending | ⇒ | Closed |
| Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2026-05-05 14:36:26 |
| Closed_By | ⇒ | mortezahonar |
| Status | Closed | ⇒ | New |
| Closed_Date | 2026-05-05 14:36:26 | ⇒ | |
| Closed_By | mortezahonar | ⇒ |
| Status | New | ⇒ | Pending |
I see two checks in failing/pending state:
continuous-integration/drone/pr — Build is failing (red)
DownloadExpected — Waiting for status to be reported (orange)
Is there anything I need to fix on my side? Or could this be related to the internet restrictions I'm currently facing?
If not, I will wait and leave it to the maintainers' discretion.
Thank you.
I see two checks in failing/pending state:
continuous-integration/drone/pr — Build is failing (red)
DownloadExpected — Waiting for status to be reported (orange)
Is there anything I need to fix on my side? Or could this be related to the internet restrictions I'm currently facing?
If not, I will wait and leave it to the maintainers' discretion.
Thank you.
No there Is nothing you can do from your side, i see the same happens tò other pr as well, something wrong on drone
Sorry, I wanted to change my branch name, which caused the PR to close. I have reopened it, and I won't change the branch name until this PR is reviewed. Sorry for adding a few unnecessary commits.