KennethB. Posted January 18, 2019 Share Posted January 18, 2019 (edited) All, I'm setting up a new installation of Prestashop 1.7.5.0. with the default theme for now and one of the fields I have come across is 'registration details' (Configure -> Shop Parameters -> Contact -> Stores -> Contact Details). I filled in every field in the contact details including this 'registration number' but all fiels except for the registration number are displayed in the front office. How can I get the content of 'registration number' to also be displayed there? Is this perhaps displayed elsewhere in Prestashop font office? See attachment for a screenshot of what I mean. PS registration number display issue.pdf Edited January 18, 2019 by KBruyninckx (see edit history) Link to comment Share on other sites More sharing options...
KennethB. Posted June 20, 2019 Author Share Posted June 20, 2019 (edited) Up, anyone have the solution to get this displayed? Surely others want/have to display business register/VAT/etc data as well. How & where do you then display it? Edited June 20, 2019 by KBruyninckx (see edit history) Link to comment Share on other sites More sharing options...
marc Posted June 27, 2019 Share Posted June 27, 2019 i have the same issue. sombody now why??? can be because in Countries/......./ Do you need a tax identification number? have to be active?? Link to comment Share on other sites More sharing options...
Mr. Tommy Posted January 3, 2020 Share Posted January 3, 2020 (edited) I have the same issue! Why don't we see the Registration number info when filled? Looks a bit like a bug. It has been a known issue since Aug 2018, but still not resolved: https://github.com/PrestaShop/PrestaShop/issues/9750 Edited January 3, 2020 by Mr. Tommy I found extra info (see edit history) 1 Link to comment Share on other sites More sharing options...
jacksfregio Posted January 29, 2020 Share Posted January 29, 2020 (edited) My solution to the problem is to add reg_number to contact_infos array $contact_infos = [ 'company' => Configuration::get('PS_SHOP_NAME'), 'reg_number' => Configuration::get('PS_SHOP_DETAILS'),// added to show Registration Number 'address' => [ 'formatted' => AddressFormat::generateAddress($address, array(), '<br />'), 'address1' => $address->address1, 'address2' => $address->address2, 'postcode' => $address->postcode, 'city' => $address->city, 'state' => (new State($address->id_state))->name[$this->context->language->id], 'country' => (new Country($address->id_country))->name[$this->context->language->id], ], 'phone' => Configuration::get('PS_SHOP_PHONE'), 'fax' => Configuration::get('PS_SHOP_FAX'), 'email' => Configuration::get('PS_SHOP_EMAIL'), ]; and in ps_contactinfo.tpl file you can use $contact_infos.reg_number to show the info Edited January 29, 2020 by jacksfregio (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now