doanky
1
Hello,
In product View Page, just show the Vendor Name (Company Name).
If I want to show more information such as.
- Address
- City
- Phone.
What do I do? Please help me. I’m using cs-cart MV V3.
I could show them when I was using V2, but can not show these info on V3.
Thank you a lot for your help.
Best Regards,
Kevin.
doanky
2
I did it myself, Just clone the fn_get_company_name functions in /core/fn.companies.php file.
Then edit the product_company_data.tpl file and add these above cloned functions.
{$company_id|fn_get_company_name}
{$company_id|fn_get_company_address}
{$company_id|fn_get_company_city}
{$company_id|fn_get_company_phone}
[quote name='doanky' timestamp='1352811352' post='149068']
I did it myself, Just clone the fn_get_company_name functions in /core/fn.companies.php file.
Then edit the product_company_data.tpl file and add these above cloned functions.
{$company_id|fn_get_company_name}
{$company_id|fn_get_company_address}
{$company_id|fn_get_company_city}
{$company_id|fn_get_company_phone}
[/quote]
Hi,
In the same way, can we display the Vendor Products? Products related to company id?
Thanks in Advance
blubt
4
is there {$company_id|fn_get_company_logo}??? like a Multi Vendor shopping cart should have or did that just get forgotten somewhere in production?
~B.
$company_data.company
$company_data.company_description
$company_data.phone
$company_data.url
There pulling in the logo with this
{assign var=“obj_id” value=$company_data.company_id}
{assign var=“capture_name” value=“logo_$obj_id
”}
{$smarty.capture.$capture_name}
[quote name='cadapult' timestamp='1355798291' post='151359']
There pulling in the logo with this
{assign var=“obj_id” value=$company_data.company_id}
{assign var=“capture_name” value=“logo_$obj_id
”}
{$smarty.capture.$capture_name}
[/quote]
{if $company.manifest.Customer_logo.vendor}
![{$company.manifest.Customer_logo.alt}]()
{else}
![{$company.manifest.Customer_logo.alt}]()
{/if}
zviadi
8
Hi guys,
May i show vendor rating in the same way on product page?? How to do this?