• Resolved dimand7

    (@dimand7)


    When using the print functionality on a recipe page, the printed version only shows the first page of the recipe.

    The content doesn’t break across multiple pages as expected, even though the recipe is long and includes multiple sections such as ingredients and instructions.

    So In order to print a 3 to 4 pages PDF, only shows only the first page available for printing.
    Is there any troubleshooting for this issue?
    Thanks

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author XjSv

    (@xjsv)

    @dimand7 This seems to be a bug. I am going to put in a fix for it in the next version.

    Plugin Author XjSv

    (@xjsv)

    @dimand7 Actually upon further investigation it seems like the theme is causing this bug.

    Specifically there is some CSS code in the Lahanna theme that causes any overflow on the page to be hidden.

    Code from Lahanna theme:

    body {
    color: #444; background: #fff; overflow-x: hidden;
    }

    It might be possible to unset the overflow for the print page via some sort of hook or custom code with the following CSS code:

    body { overflow: unset; }

    Thread Starter dimand7

    (@dimand7)

    That fixed it!
    Thank you very much!

    Plugin Author XjSv

    (@xjsv)

    No problem at all.

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.