Thanks for this note.
Could you tell me what kind of ticket shall be opened?
Can it be done for free accounts?
I don't see an option to send any text.
You can try the Scroll PDF plugin which lets you surround content which should or shouldn't appear in a PDF. It also has lots of options for customizing PDFs. You can try it for free and see if it helps you with your problem.
https://marketplace.atlassian.com/plugins/com.k15t.scroll.scroll-pdf/server/overview
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try putting the Choose Label macro within a span or div macro, set the class to noprint, then add the noprint instruction to the PDF Stylesheet:
.noprint
{
display: inline-block ;
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unfortunately adding the noprint div to a template with variables seems to break the template (I click apply and find the variables display as a bulleted list and the template fields disappear - I tried with a fresh template and the same thing happened). Thank you for the suggestion though.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try following his advice of wrapping the content in span or div and giving it a class of "nonprint" and then add this to the stylesheet:
@media print { .noprint{ display: none !important; } }This should hide it from the PDF.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Alex, I tried that, but as mentioned above, adding div or span to the template code breaks the template. I guess it would work in a normal page, but not in a template?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try wrapping it in something that you can give an ID or class name to so that you can access it from CSS and hide it.
The other solution is that Scroll PDF plugin which works great but that cost $.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.