Adicionar boleto e instru??es de pagamento ao email
-
Boa Tarde, adorei o plugin e seu funcionamento, mas simplifica muito a vida do cliente se ele receber em seu email os dados para pagamento , logo adaptei esse código para ser adicionado ao Functions.php ou ao Plugin Snippets para adicionar essa funcionalidade,
-> Somente precisa substituir a parte de “SEUDOMINIO”do codigo./** * Adicionar dados do boleto ao email */ add_action( 'woocommerce_email_before_order_table', 'mensagem_no_email', 10, 1 ); function mensagem_no_email($order){ $method = get_post_meta( $order->get_id(), '_payment_method', true ); if($method != 'interboleto') return; $boleto = get_post_meta( $order->get_id(), 'boleto', true ); $nossonumero = get_post_meta( $order->get_id(), 'nossonumero', true ); echo '<p><strong>'.__( 'Código de Barras' ).':</strong> ' . $boleto . '</p>'; echo '<p><strong>'.__( 'Nosso número').':</strong> ' . $nossonumero . '</p>'; echo '<p class="billetdownload"><a target="_blank" href="https://www.SEUDOMINIO.com.br/wp-content/plugins/wc-banco-inter/tmp/boleto-'.$order->get_id().'.pdf">'.__( 'Baixar boleto').'</a></p>'; }
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Adicionar boleto e instru??es de pagamento ao email’ is closed to new replies.