• Resolved umek

    (@umek)


    hi,

    With reference to the “footer” text as inputted in WooCommerce / Settings / Print, can you kindly advise the code to be inputted in functions.php to:
    1. hide this footer text in the “invoice” and display it in the “delivery note”
    2. increase the font size of this text

    thanks a lot

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @umek,

    Sorry for the delay in response.

    1) Could you please share the screenshot of where exactly do you want to hide the text?

    2) To increase the font-size of the text, could you please try the below code and check whether it works or not.

    Code:
    /**
    * Add this code snippet in functions.php file of your currently active theme.
    */
    function example_serif_font_and_large_address() {
    ?>
    <style>
    #page {
    font-size: 1em;
    font-family: Georgia, serif;
    }

    .order-addresses address {
    font-size: 2.5em;
    line-height: 125%;
    }
    </style>
    <?php
    }
    add_action( ‘wcdn_head’, ‘example_serif_font_and_large_address’, 20 );

    Please let us know how it goes.

    Regards,
    Kenil Shah

Viewing 1 replies (of 1 total)

The topic ‘Footer Display’ is closed to new replies.