• Resolved mavyalex

    (@mavyalex)


    Hi,

    I just installed WP Zoom on my WordPress website, but I still use the classic WordPress page editor.How can I add the zooom class to the pages with images I want the zoom to work?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter mavyalex

    (@mavyalex)

    Additionnally I found out that I can apply the WP Image zoom functionality to maimages with the classic editor by using the zoom icon ..I applied it to all images of one of my WordPress page but it doesn’t upon viewing. I use Mozilla Firefox.
    Is this normal?

    Check: https://siege-gamer.fr/dxracer/

    Plugin Author SilkyPress

    (@diana_burduja)

    The “zoooom” CSS class is correctly applied to the images.

    Currently there is an issue with images served by the ShortPixel CDN. The zoom will work alright if you disable the “Optimize images” option on the WP Admin -> Settings -> Autoptimize -> Images page.

    We’ll have to solve this issue during the next plugin’s release.

    instead of disabling image optimization, you could as a temporary workaround use the following code snippet to exclude the image with class zoooom from being served from the shortpixel CDN;

    
    add_filter('autoptimize_filter_extra_imgopt_noptimize','imgopt_excl');
    function imgopt_excl() {
      return 'zoooom';
    }

    have a great Saturday!
    frank

    Plugin Author SilkyPress

    (@diana_burduja)

    Thank you very much, Frank.

    I find that a much better solution until I get this thing sorted out and fixed.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to insert the zooom class on old WordPress page editor?’ is closed to new replies.