Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Claudio Sanches

    (@claudiosanches)

    Pode alterar os campos com o filtro wcbcf_billing_fields.

    Aqui exemplo de uma função para remover a opção “selecionar”.

    function custom_wcbcf_billing_fields( $fields ) {
    	if ( isset( $fields['billing_persontype']['options']['0'] ) ) {
    		unset( $fields['billing_persontype']['options']['0'] );
    	}
    
    	return $fields;
    }
    
    add_filter( 'wcbcf_billing_fields', 'custom_wcbcf_billing_fields' );
    
    Thread Starter marlene4us

    (@marlene4us)

    Perfeito! Seu código produziu o efeito desejado. Obrigada.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘no chekout apareça como padrão selecionado a opção "Pessoa Física"’ is closed to new replies.