In which file are stored/saved the custom invoice design ?

I’ve made a custom design that I’d like to share but I don’t know in which file the custom invoice design are stored/saved ? ?

Regards :slight_smile:

If I recall correctly, custom designs are saved in your MySQL database under <YourDBName>.invoice_designs. Not sure if there’s an easy way to import/export them other than

SELECT * FROM <YourDBName>.invoice_designs
WHERE name-"<DesignYouWantToExport";

As far as importing that, I’m not sure what issues that would cause with a live database.

Sorry, that last line should read WHERE name="<DesignYouWantToExport>";

The standard invoice designs are stored in the invoice_designs table but custom invoice designs are stored in the accounts table.

select custom_design1 from accounts;