Opencart Free Shipping ZIP

Asked

Viewed 563 times

2

The customer wants to provide free shipping for shopping here in the city, opencart already has free shipping option for price, I just want to know how to make a condition of the zip code here.

I want to know which files to edit and such. And also how to know the zip line here of the city.

  • so I guess he won’t want to, but he doesn’t have a basis for this free?

  • got it, thanks for now. now about opencart you know something? from the files I say.

  • 1

    I found this here: http://www.buscacep.correios.com.br/servicos/dnec/menuAction.do?Metodo=menuFaixaCep

  • I don’t know anything about Opencart. :(

  • opa cara, thanks, sometimes we do not look for direct. the cep band I think is right. thanks really. now I’ll just find the file here and do the validation

1 answer

0

<?php    
function busca_cep($cep){  
    $resultado = @file_get_contents('http://republicavirtual.com.br/web_cep.php?cep='.urlencode($cep).'&formato=query_string');  
    if(!$resultado){  
        $resultado = "&resultado=0&resultado_txt=erro+ao+buscar+cep";  
    }  
    parse_str($resultado, $retorno);   
    return $retorno;  
}  


/* 
 * Exemplo de utilização  
 */  

//Vamos buscar o CEP 90020022  
$resultado_busca = busca_cep('90020022');  

echo "<pre> Array Retornada: 
 ".print_r($resultado_busca, true)."</pre>";  

switch($resultado_busca['resultado']){  
    case '2':  
        $texto = " 
    Cidade com logradouro único 
    <b>Cidade: </b> ".$resultado_busca['cidade']." 
    <b>UF: </b> ".$resultado_busca['uf']." 
        ";    
    break;  

    case '1':  
        $texto = " 
    Cidade com logradouro completo 
    <b>Tipo de Logradouro: </b> ".$resultado_busca['tipo_logradouro']." 
    <b>Logradouro: </b> ".$resultado_busca['logradouro']." 
    <b>Bairro: </b> ".$resultado_busca['bairro']." 
    <b>Cidade: </b> ".$resultado_busca['cidade']." 
    <b>UF: </b> ".$resultado_busca['uf']." 
        ";  
    break;  

    default:  
        $texto = "Fala ao buscar cep: ".$resultado_busca['resultado'];  
    break;  
}  

echo $texto;  
?>
  • I believe that with this example you can understand better.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.