flyerkhong Posted March 25, 2020 Share Posted March 25, 2020 Hello everybody, May i know how to add a divider line in address page? Thank you and appreciate Link to comment Share on other sites More sharing options...
Guest Posted March 28, 2020 Share Posted March 28, 2020 (edited) ./controllers/admin/AdminAddressController.php after: $temp_fields[] = array( 'type' => 'text', 'label' => $this->trans('VAT number', array(), 'Admin.Orderscustomers.Feature'), 'col' => '2', 'name' => 'vat_number', 'required' => in_array('vat_number', $required_fields), ); add: $temp_fields[] = array( 'type' => 'html', 'html_content' => '<hr style="border-top: 2px dashed red; margin-left: -25%;" />', 'col' => '8', 'name' => 'divider', ); Edited March 28, 2020 by Guest (see edit history) Link to comment Share on other sites More sharing options...
flyerkhong Posted March 28, 2020 Author Share Posted March 28, 2020 5 hours ago, Guest said: ./controllers/admin/AdminAddressController.php after: $temp_fields[] = array( 'type' => 'text', 'label' => $this->trans('VAT number', array(), 'Admin.Orderscustomers.Feature'), 'col' => '2', 'name' => 'vat_number', 'required' => in_array('vat_number', $required_fields), ); add: $temp_fields[] = array( 'type' => 'html', 'html_content' => '<hr style="border-top: 2px dashed red; margin-left: -25%;" />', 'col' => '8', 'name' => 'divider', ); Hi, really appreciate for help, it is very helpful please help me again for the below issue thank you and appreciate Link to comment Share on other sites More sharing options...
Guest Posted March 28, 2020 Share Posted March 28, 2020 (edited) I gladly helped. Edited March 28, 2020 by Guest (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