Hello everyone
I'm trying to add the users id to their profile article alias when they register or edit their profile. For example, when the user registers an article is automatically created for them in the Users article category. I want the alias for that article to have the users id (not the article id). Like Title: My Name. Alias: 103-my-name. I am using Seblod Code Pack
This BeforeStore only inputs the first and last names: $config['storages']["#__content"]["alias"] = $fields["art_id"]->value . '-' .$fields["user_first_name"]->value . '-' . $fields["user_last_name"]->value;
Thank you