Printing and theme issue

@Shadzta Print button probably won’t be fixed. The issue is outside of Manager. When you click Print button, Manager will simply pass the command onto underlying Mac libraries. It’s possible this issue will eventually resolve on its own as Mac gets regular updates too.

This is why Manager has PDF button so there is more control over the PDF generation process. If PDF button would be broken, it’s something I’d be definitely looking at in detail.

As for windowed envelopes, this will require some HTML customization to default theme but it’s relatively simple customization. When you look at the default theme here: Free Accounting Software | Manager

Find the lines which say:

<td>
  <div><b>{{ recipient.name }}</b> {{ recipient.code }}</div>
  <div>{{ recipient.address | newline_to_br }}</div>
  <div>{{ recipient.identifier }}</div>
</td>

All you have to do is replace the first line which says:

<td>

with:

<td style="padding-left: 20px; padding-top: 10px">

This will move recipient details 20px to the right and 10px to the bottom. Adjust these numbers as required until the address fits your envelope window exactly.

As for default theme, something is brewing up to resolve this issue too.

1 Like