• Resolved westmantech

    (@westmantech)


    Just purchased Print-Pro-Matic. What im looking to do is to have the popup print out from the button automatically. Right now my users have to launch the popup, scroll and click the printer icon. Im trying to have my customers click button–>popup prints.

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

Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Contributor twinpictures

    (@twinpictures)

    For Print-Pro-Matic support please contact the support channel in the purchase receipt, as support for premium plugins is against the WordPress Forum guidelines.

    Thread Starter westmantech

    (@westmantech)

    Anyway to make it print full page as well? like 8.5 x 11?

    Thread Starter westmantech

    (@westmantech)

    shoot okay

    Thread Starter westmantech

    (@westmantech)

    Emailed.

    Plugin Contributor twinpictures

    (@twinpictures)

    since your question also apples to the free version, we will answer it here for others in the community.

    1. print out from automatically – It is not possible to have anything from a browser automatically trigger a print. Browsers have a standard print dialogue box that will allow the user to do things like a) select a printer, b) download the print as a pdf file, c) scale the print, etc…

    2. To print the image out all full height (or width), use @media print CSS such as:

    @media print {
       img {
           max-height: 100%;
           width: auto;      
       }
    }

    or

    @media print {
       img {
           max-width: 100%;
           height: auto;      
       }
    }
    Thread Starter westmantech

    (@westmantech)

    I didn’t mean “automatically” per say. What i meant by that was the blue button would trigger that dialog box.

    Thread Starter westmantech

    (@westmantech)

    I would paste that css code in the plugins css drop right?

    Thread Starter westmantech

    (@westmantech)

    dropped that css, inside the custom css from the theme

    Thread Starter westmantech

    (@westmantech)

    No dice.

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘Print Jet PopUp From Button’ is closed to new replies.