Mar 13, 2017 2:53 AM
Hello everyone,
I have a question regarding the posts header > author_data. I've tried to search and find in documentation an solution that solve that, but yet, no success.
I run multiple (multi-language & multi-solutions) blogs and want to add in the post(s) author_data "Posted in <BLOG>" instead of "Posted in <TOPICS>".
Example, what i have now: "Posted by <AUTHOR> in <TOPICS> on <DATE>"
Is there any solution?
Thank you very much in advance,
Draqos
Solved! Go to Solution.
Mar 16, 2017 3:53 AM
Thanks for your feedback Anthony.
Here is what I do by myself and it seems that works:
in <a href="{{ post.parent_blog.absolute_url }}">{{ post.parent_blog.public_title }}</a>
Mar 15, 2017 2:46 PM
Hi Draqos,
You might be able to accomplish this by editing your template and replacing {{ content.topic_list }} with {{ group.public_title }}.
This would replace the list of topics associated with a post with the name of the blog.
I hope that helps,
Anthony
Mar 16, 2017 3:53 AM
Thanks for your feedback Anthony.
Here is what I do by myself and it seems that works:
in <a href="{{ post.parent_blog.absolute_url }}">{{ post.parent_blog.public_title }}</a>
Mar 16, 2017 9:45 AM
Perfect! Glad you got that sorted.
-Anthony