php if custom field lookup on pageload
-
Ewout, one more question on this:
i’m currently using this and it looks for the billing state and works great
<?php if ($this->order->billing_state == 'ny' && $item['sku'] == 'ny01'): echo '<table class="page1">'; elseif (): endif; ?><?php endforeach; endif; ?>
I now need to switch my if statement to look for
$wpo_wcpdf->custom_field[‘myfield7’] instead of $this->order->billing_statemy statement looks like this but it’s not resolving. can you see what’s wrong here?
if ($this->order->custom_field['myfield7'] == 'ny' && $item['sku'] == 'ny01'): echo '<table class="page1">';
https://www.ads-software.com/plugins/woocommerce-pdf-invoices-packing-slips/
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘php if custom field lookup on pageload’ is closed to new replies.