ContributionsMost RecentMost LikesSolutionsRe: Problems with custom components in Aurora engwei it doesn't work for us :( Re: Problems with custom components in Aurora Something is wrong with posting anything on community Re: Problems with custom components in Aurora Hi! I have two questions about new custom components in Aurora communities. In documentation: Create a pull request to pull these changes into the main branch of your plugin (<phase>-main, not main). The pull request must be merged We merged our changes to stage-main branch, but this changes are not appearing in the community ( stage-main is the active branch in the community)The added ExampleComponent does not appear in the list of Custom Components, but when I change the branch to feat/cleanup-package-lock (merged branch), the changes become available. Re: Problems with custom components in Aurora Code: import type { CustomComponentProps } from 'aurora/externalContext'; import React from 'react'; const ExampleComponent: React.FC<CustomComponentProps> = ({ auroraContext }) => { const { components, utils } = auroraContext; const { i18n } = utils; const { Panel, PanelBody } = components; return ( <div> <Panel> <PanelBody> <p>{i18n.formatMessage('panel.title')}</p> </PanelBody> </Panel> </div> ); }; export default ExampleComponent; Would be grateful for any help, thanks! Would be grateful for any help, thanks! Re: Problems with custom components in Aurora When i switch active branch to the feat/cleanup-package-lock and try to add custom component i get error: Loading script failed. (missing: https://aurora-customization-usw2.lithium.com/auroradynatrace/feat%2Fcleanup-package-lock/mf/_next/static/chunks/remoteEntry.js?t=1737618055467)What can be the reason of this issue? Component is really simple and almost identical to the CatFactToast from the example, but without any fetchings :) Problems with custom components in Aurora . Problem with the verification link in email Hi! Our users when they want to change the email receive a link in verification mail that is broken, the URL has un-interpreted parameters. How and where it can be fixed? Thanks for the help! rls. as such I'm unable to confirm the change. Selecting messages containing a specific words combination via API Hi! I need an API call that will retrieve all messages with a certain combination of words, for example, I want to search for messages with "edit message" in the message body and retrieve an object with messages that contain that combination of words. Thanks! Replacing the old links in forum with the new one in the body of many posts Hi! In the forum we have a lot of messages with the links from the old versions of the forum (before March 2020) that are posted in the old questions. While they all have redirects and by clicking them, you still are transferred to the right place in the forum, we would love to get rid of them and exchange them for the new ones. Is there any API call that can edit message's body? Or maybe this issue can be resolved in the forum settings? Would be greatful for any tips and ideas SolvedText placeholder in Khoros studio that can be edited with a script Hi! I am creating a component, that requires usage of a text that is stored in the reliable place. Cookies, local and session storages are not working for me since this component should work for all Admin users. I need a place in Khoros Studio that can store a short string, be reliable, be accessed via code (Jquery, <Script> Freemarker) and most importantly, that I can edit with the code.