In this post I am going to explain how to get state details by id in PrestaShop 1.7. // Your State Id $id_state = 8; // Load State object $state = new State((int) $id_state); // Validate State object if (Validate::isLoadedObject($state)) { // Get State Name echo $state->name; // Get State ISO Code echo $state->iso_code; //…


Recent Comments