I have my second brand but still in a company and I need to create invoice for my second brand but the logogram on invoice is integrated to logo in settings which is only can show 1 logogram. Can I have two or more logo in one company?
1 Like
Here is an answer to a similar question as yours:
Currently Manger does not support two logos.
So the best option is to create two businesses.
Plus then you can keep track of the profit that each makes and so on.
Hope this answers your question!
It should be possible to do this using a script in the footer to replace the default logo.
Add your logo image to Folders Tab
, and get the Image URL of your logo.
Create Footer
with this code
<script>
let images = document.querySelectorAll('img');
images.forEach((image) => {
if (image.src.includes('/business-logo-view?')) {
image.src = '/view-attachment?ChIJLKpJzsrmO04Rm0UucjPjQwGiBgRUZXN0';
}
});
</script>
Replace URL on this line image.src = ‘/view-attachment?ChIJLKpJzsrmO04Rm0UucjPjQwGiBgRUZXN0
’; with your logo URL.
Add footer to your Invoice.
5 Likes
(post deleted by author)