Hello,
There is an away to remove these fields: Country, City, State and Postcode from Checkout?
I already removed these lines in main/controllers/Checkout.file that has country_id, state, city and postcode. Also deleted in: view/tastyigniter-orange/checkout.php
But when I click in Checkout Button in Checkout it shows this error:
- Sorry but form validation has failed, please check for errors.
What am I missing here? Which files should I edit to remove Country, State, City and Postcode from TastyIgniter?
Cheers!
---
Solved:
It was missing to delete these lines:
$this->form_validation->set_rules('address['.$key.'][city]', 'lang:label_city', 'xss_clean|trim|required|min_length[2]|max_length[128]');
$this->form_validation->set_rules('address['.$key.'][state]', 'lang:label_state', 'xss_clean|trim|max_length[128]');
$this->form_validation->set_rules('address['.$key.'][country_id]', 'lang:label_country', 'xss_clean|trim|required|integer');
:D