Viewing 1 replies (of 1 total)
  • Plugin Contributor Ewout

    (@pomegranate)

    Hi! If you want to move the address, you have to create a custom template.
    You can switch:

    <td class="shop-info">
    	<div class="shop-name"><h3><?php $wpo_wcpdf->shop_name(); ?></h3></div>
    	<div class="shop-address"><?php $wpo_wcpdf->shop_address(); ?></div>
    </td>

    with:

    <td class="address billing-address">
    	<!-- <h3><?php _e( 'Billing Address:', 'wpo_wcpdf' ); ?></h3> -->
    	<?php $wpo_wcpdf->billing_address(); ?>
    	<?php if ( isset($wpo_wcpdf->settings->template_settings['invoice_email']) ) { ?>
    	<div class="billing-email"><?php $wpo_wcpdf->billing_email(); ?></div>
    	<?php } ?>
    	<?php if ( isset($wpo_wcpdf->settings->template_settings['invoice_phone']) ) { ?>
    	<div class="billing-phone"><?php $wpo_wcpdf->billing_phone(); ?></div>
    	<?php } ?>
    </td>

    Which puts the shipping address at the top right corner.

    Hope that helps!
    Ewout

Viewing 1 replies (of 1 total)
  • The topic ‘Labeled Paper – Move shipping address location’ is closed to new replies.