Error on click on view seller page/view collection page
-
When we click on Seller profile ,Marketplace->profile->view seller page
-
-
we not finding that function in core.php
-
Hi @yousuf
Please open Core.php file in core package, you will find below code at line number 622.
/** * Returns country name by code * * @param string $code * @return string */ public function country_name($code) { $country = $this->countryRepository->findOneByField('code', $code); return $country ? $country->name : ''; }
If not, then put this function in same file.
Thanks
-
we copy this its work,thanks