Changing The "author" From Admin To Storefront Name

This is specifically for both the "Blog Pages" and the "Vendor Communication" sections.

Currently in both, the name of the admin is showing as the one who posts the blog, and as the one who replies user questions for vendor communications.

Is it possible to replace these with the storefront name instead?

Note: We only have one admin across all the storefronts with firstname/lastname = admin/admin.
So it's weird to have posts and replies with Admin Admin

Just to reply my solution to my own question, I managed to solve the "Blog Author", by changing the following:

In: addons / blog / hooks / pages / page_content.pre.tpl

Changed:

{__("by")} {$page.author}

To:

{__("by")} {$runtime.company_id|fn_get_company_name}

In: addons / blog / hooks / pages / page_extra.pre.tpl

Changed:

{__("by")} {$subpage.author}

To:

{__("by")} {$runtime.company_id|fn_get_company_name}

But of course by creating new templates in the My Changes directory.
This seems to have worked.

For the Vendor Communications, I did the same to the following templates:

addons / vendor_communication / views / vendor_communication / threads.tpl

addons / vendor_communication / views / vendor_communication / view.tpl

Thank you for keeping us updated