Good morning all, I would like to find out f their is a clear description of how to edit/ add tips under the help extension. The documentation on the following links do not really give me any understanding of how to work with them:
I was able to get to this point but got stumped as to what I had to do next or how the extension parameters affect what is shown in the tip. Also, where does the actual text in the tips seat, as editing the content part seems to do nothing for me(I am probably doing it wrong honestly)
The tip parameter is the tip text… Is that where you’re stumped?
The doc says:
tip: the text of the tip to display. Note that it could use translations such as {{code}}tip=$services.localization.render(‘help.tipsPanel.gettingStartedTip’){{/code}}
$services.localization is a service used for translations, so the help.tipsPanel.gettingStartedTip is a translation key that has it’s text in a translation page. In the case of Help Application that page is located in Help/Translations.
You can:
stop using translation keys (if you don’t need your content in multiple languages) and just put the text tip=Text
modify the current translation key, by editing the Help/Translations pages
add your own translation page and translation keys are use them;
You can:
add your own Tips by creating new pages that use the extension point;
Thank you for the explanations, was much simpler than I had initially assumed But both @evalica and @vmassol have covered what I was asking. As always, thank you for you great help and support.
Syn, I’m glad that you liked my answer and marked it as solution. If you find the documentation to be too complex or is lacking content, please help us make it better
Have fun adding new tips and if you have good ones, consider making some Pull Requests with them, since our plan is to add more tips for users.
Will do, as I get more acquainted with the features, I will definitely contribute on the topics I found challenging myself, again, thanks for the help.