Issue with Flexible Checkout Fields plugin
-
Hi,
I’m using the plugin Flexible Checkout Fields to add 2 extra fields in the customer billing form.
Then I tried to add the code bellow after the last PHP if “get_billing_email”.<?php
if ( !empty($customer->get_billing_email())) {
echo esc_html( $customer->get_billing_email() );
echo "<br>";
}
?>
// my 2 extra fields
<?php
if ( !empty($customer->get_billing_n_rcs())) {
echo esc_html( $customer->get_billing_n_rcs() );
echo "<br>";
}
?>
<?php
if ( !empty($customer->get_billing_n_tva_intracommunautaire())) {
echo esc_html( $customer->get_billing_n_tva_intracommunautaire() );
echo "<br>";
}
?>I get a critical wordpress error when clicking on the pdf cart button.
Can you help with this issue?Regards
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Issue with Flexible Checkout Fields plugin’ is closed to new replies.