This documentation is intended for the CornerStone development team and web developers using the CornerStone Page Builder. It explains the process of maintaining the compatibility of the CornerStone Page Builder with WPML, which is done by updating the language configuration file.
How the integration of the CornerStone Page Builder works with WPML
To understand how the CornerStone Page Builder works with WPML, let us start by creating a simple page using the CornerStone Page Builder. We will include a few modules, such as a Classic Text Element, a Classic Alert, and a Classic Button.
As you already know, these modules generate shortcodes, which wrap the content. You can see an example of this in the following image:
To translate the page we created, click on the “plus” icon found in the language meta-box on the top right.
This will take you to the Translation Editor screen, where you can translate your page. Fill in your translated text, and choose Translation is complete for each field, then click on the Save & Close button.
When we view the translated page in the Text editing mode, we can now see the translated strings wrapped with the page builder shortcodes.
Updating the language configuration file
You might need to update the page builder shortcodes in the language configuration file for different reasons:
- adding a new shortcode to the page builder;
- adding a new attribute to an existing shortcode; and
- removing an obsolete shortcode.
You can download the language configuration file from our repository. Add the shortcodes or attributes to the existing shortcodes to the language configuration file
Page builder shortcode structure in the language configuration file
To extract strings from pages built using the CornerStone Page Builder and load them on the Translation Editor screen, we need to configure WPML to identify the shortcodes and attributes containing the strings that require translation. This is done by adding a file, called wpml-config.xml, which is typically placed in the root folder of your theme. For CornerStone, we are hosting the language configuration file on our servers. It is set to override the local configuration file placed in X themes’s root folder, ensuring that the configuration file is always up to date.
The wpml-config.xml file is also used to configure the following elements:
- Custom fields
- Custom taxonomies
- Admin texts / wp_options
- Language switcher configuration
- Page builder shortcodes
See our detailed documentation to learn more about the language configuration file structure and syntax.
As an example, let us see how we added the Classic Button shortcode to the wpml-config.xml file.
<shortcode> <tag>x_button</tag> <attributes> <attribute>href</attribute> <attribute type="link">title</attribute> <attribute>info_content</attribute> </attributes> </shortcode>
The structure of the above example can be broken down as follows:
- All the shortcodes are wrapped with the shortcodes
- The shortcode tag wraps all the tags belonging to one, single shortcode.
- The tag tag defines the name of the shortcode, which in this case, is the x_button.
- Shortcodes can have one or more attributes; hence, we wrap them in the attributes (plural) tag and use the attribute (singular) tag to define the title of each attribute. In this case, we have the href, title, and the info_content.
For shortcodes that include link attributes, you can make internal links automatically point to the translated version of that post by using the type option “link” for the attribute as shown in the previous example.
Testing the language configuration file
To test the updated language configuration file, follow these steps:
-
- Set up an installation having both CornerStone and WPML activated. Activate the String Translation, Translation Management, and Media Translation add-ons.
- You will need to override the remote language configuration file with the updated one. To do this, navigate to WPML -> Settings page, and click the Custom XML Configuration tab. Copy the content of your updated language configuration file to the editor, and click Save.
-
- Create a new page, and add the new module(s) to it. In case you updated some attributes for existing modules, add these to the page as well. In this example, we will assume that the Classic Button module was newly added to the CornerStone Page Builder. Add it to the page, and Publish.
-
- Click on the plus icon to translate the page. This will take you to the Translation Editor screen.
- Ensure that the module textual elements are displayed on the Translation Editor screen.
- Fill in your translated text. Select Translation is complete for each field, then click on the Save & Close button.
-
- Check the translated page on the front-end.
The translated page shows all the translated strings, implying that the updated language configuration file is working properly. In case you are encountering any issues, please contact our compatibility development team. They will be happy to check issues related to the language configuration file.
Once done with the tests, please submit a merge request to our repository. Our compatibility developers will receive your requests and review it.