• Resolved pueu

    (@pueu)


    Hello, thank you for such a great plugin, I read lots of support posts here but I can’t find what I need
    1/ I need the invoice number to be the woocommerce order number, please
    2/ I need to put html (links) in footer 1 and footer 2 areas.

    Please help, thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello @pueu ,

    Thank you for contacting us. We really appreciate your opinion.

    1. Please follow this documentation: How to configure invoice number?

    2. Please update the plugin to 3.3.24 and add this code. Note that this is just an example.

    add_filter( 'woo_invoice_footer_1', 'custom_footer_1', 10, 3);
    function custom_footer_1($content, $template, $order) {
    	ob_start();
    	?>
    <a href="google.com">Google</a>
    	<?php
    	$output = ob_get_clean();
    	return $output;
    }

    Let us know further.

    Thread Starter pueu

    (@pueu)

    Thank you for your reply and help.

    I’m still just having a few problems making footer 1 and 2 text bigger, I can’t get the css class right, if you could kindly help me with that.

    I’ll upgrade to Pro to fix the invoice number.

    Thank you again.

    Hello @pueu,

    Thank you for asking.

    You can use inline style like the following code

    add_filter( 'woo_invoice_footer_1', 'custom_footer_1', 10, 3);
    function custom_footer_1($content, $template, $order) {
    	ob_start();
    	?>
    <a href="google.com" style="font-size:20px;">Google</a>
    	<?php
    	$output = ob_get_clean();
    	return $output;
    }

    Let us know this could solve your issue.

    Hello @pueu

    It’s been a while since I heard from you. Hopefully, your problem has been solved. I’ll mark this as resolved. In the future, if you face any error or looking for some functionality, click “Open a new topic” and describe your issue in detail as much detail as you can. We will be happy to solve your problem anytime.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Great plugin, just two things needed please’ is closed to new replies.