saguaros
Thanks,
TPL_CONTENT_WRITTEN_BY
this language override removed the word "By" and the author name as well - which is not good when you have multiple authors.
I searched "By" in the language files, it is not there, it is also not in the template files
any other solution?
----EDIT-----
I found the solution:
The reason replacing TPL_CONTENT_WRITTEN_BY removes the entire author section is that this string serves as a placeholder that formats the "By" text along with the author name. If you override this string with an empty value or text without placeholders, it could break the expected output.
Solution: Modify the Override Carefully
In the "Language Overrides," replace TPL_CONTENT_WRITTEN_BY
Instead of removing the value, use a placeholder like %s to ensure the author name is still included. For example:
Written by %s
or just try: %s
This way, the "By" text changes while preserving the author information.