[ad_1]
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; }
That fixed it!
Thank you very much!