Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @aborsum,

    Print Option is only available in Agenda view and only this view will be printed correctly, you can use browser’s print functionality to print month view but it will be unreadable.

    Take care,
    Ben

    Thread Starter aborsum

    (@aborsum)

    Dear Benjamin,

    thanks for your answer but I think I haven’t made clear what I mean. The print option of the plugin itself works fine.

    I’m referring to printing with the browser’s print functionality. Here, I see the mentioned URLs in the print as well as in the print preview. The agenda view is also affected. Here’s a PDF print of https://ewf-erlangen.de/termine/ in agenda view:

    https://ewf-erlangen.de/wp-content/uploads/2017/10/Termine-EWF.pdf

    Or do you mean that this won’t work as I expected and only using the plugin’s print option of the agenda view will have a readable result?

    Thanks and best,
    aborsum

    Thread Starter aborsum

    (@aborsum)

    Hi again,

    it’s my strange habit to dig into things and do reverse engineering…

    I emulated the print view in Firefox and inspected the problematic element.

    And I found the following CSS:

    .timely a[href]::after {
        content: " (" attr(href) ")";
    }

    As a quick workaround, I added this CSS to my child theme’s CSS:

    @media print {
         /* workaround to make calendar printable */
           .timely a[href]::after {
           content: "";
        }
    }

    This solves my problem for the moment. Maybe you can use this information for future changes.

    Thanks for your support anyhow.
    Best,
    aborsum

    Thank you for the workaround, I will forward this to the development team and they will see what we can do ??

    Take care,
    Ben

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Problem printing page with calendar’ is closed to new replies.