PDF Invoice Title Caps | WordPress.org

[ad_1]

Hi @devrichtercaterers:

Try this code snippet I just wrote for you:

/**
 * PDF Invoices & Packing Slips for WooCommerce:
 * Capitalize the "Invoice" in the document file name
 */
add_filter( 'wpo_wcpdf_filename', function( $filename, $document_type, $order_ids, $context ) {
    $new_filename = str_replace( 'invoice', 'Invoice', $filename ); 
    return $new_filename;
}, 10, 4 );

If you haven’t worked with code snippets (actions/filters) or functions.php before, read this guide: How to use filters

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer