Vendor Store Name

How to put the name of the vendor store at the very top of their store page? What we have now there is

Stores


https://demo.cart-power.com/multi-vendor/cyberdyne-systems/

While in the above case, it must be

Cyberdyne Systems

The title of the page is also wrong - All Vendors

Try to use html block with smarty support

{if $company_data}
    {$company_data.company}
{elseif $company_id}
    {$company_id|fn_get_company_name}
{/if}

Great! :-)

Now we need to make it h2 like this

{__("company")}

Great! :-)

Now we need to make it h2 like this

{__("company")}

{if $company_data}
    

{$company_data.company}

{elseif $company_id}

{$company_id|fn_get_company_name}

{/if}