• Resolved Nikodemsky

    (@nikodemsky)


    So i really like the plugin – it’s easy to use, i can set my own header/footer etc. – good job on this, but i have a problem,

    i’m trying to print page:
    http://gama.test2015.atthost.pl/produkt/f-39-3/
    – i’ve targeted #content(with [print-me target="#content"] shortcode), but print plugin doesn’t recognize columns i’ve made with wc canvas plugin(it’s 3 columns, 33.3% of width each) and two of images are not centered. I’m using standard WP class for image centering(alingcenter).

    Other thing – can i preserve output(visual look) from page on print? I need to print #content only.

    https://wordpress.org/plugins/print-o-matic/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Baden

    (@baden03)

    are you including the theme’s CSS? It’s a setting in the plugin’s option page under:
    Dashboard > Settings > Print-O-Matic > Include Theme CSS

    Thread Starter Nikodemsky

    (@nikodemsky)

    Indeed I am, that’s why i’m a bit confused.

    WC canvas using external css, but even if I add those to custom style/custom print style, then printomatic still doesn’t recognize them.

    Thread Starter Nikodemsky

    (@nikodemsky)

    Anything new about my case?

    Other thing i noticed – plugin doesn’t read standard wordpress classes like “alignright” or “aligncenter”, which i need to include manually to custom classes. That’s kinda inconvienient :\

    Btw. after i added some classes to display/print pages normal CSS(on pages) changed as well. Is this normal?

    Thread Starter Nikodemsky

    (@nikodemsky)

    Ok, so i managed to fix it by myself.

    Plugin didn’t recognize some of the classes from theme(or simply there was too much of those to pick correct ones – it’s child theme from cherry framework) – so i just copied all classes from plugin i mentioned above and seems like print-o-matic at last recognize those.

    Second issue was related to my not-too-good-reading-skill, I thought that “custom class” is related to plugin only, but it’s affects whole website. One part from text below was confusing, maybe that’s why – “Custom display page“. Maybe add info, that this affects whole website. Cool thing btw. but haven’t thought, that something like this might be added to such plugin.

    Again thanks for nice plugin.

    Plugin Author Baden

    (@baden03)

    hey there. Yes there are two areas of custom CSS, one for the display page, and one for the print page.

    Also, keep in mind, that if you are printing an element, say with a class of .monkey but the css defines the .monkey class like so:

    #zoo .monkey {
        text-align: center;
    }

    then the print page will not apply this, as it’s no longer wrapping the monkey in the zoo.
    you would need to manually define a monkey class on the loose like so:

    .monkey {
        text-align: center;
    }

    Regardless, glad you got it sussed out.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Plugin doesn't recognize shortcodes’ is closed to new replies.