• Resolved arfufu

    (@arfufu)


    Dear nK,

    I am using your plugin since a while without any issues, to decorate my categories / tags pages, using your shortcode feature. But I just noticed a 2 problems recently that I wanted to share, maybe you have an idea of what it is…

    – I have installed the plugin “Shortcodes Ultimate” since the beginning, and I want to uninstall it now. The thing is when Shortcodes Ultimate is deactivated, all my AWB shortcodes are not working anymore! I see the raw shortcodes in front-end : [ … ]. It seems that without the plugin Shortcodes Ultimate my WP doesn’t recognize the AWD shortcodes, which doesn’t make sense to me, but maybe to you?

    – I noticed also that with my image optimization plugin – Imagify – the “cover” parameter doesn’t work properly when I have a panoramic image. It doesn’t cover the container like it did before using Imagify. With a classic ratio image the cover parameter works though.

    Do you have any idea?
    thank you very much

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

Viewing 12 replies - 1 through 12 (of 12 total)
  • Thread Starter arfufu

    (@arfufu)

    Correction for the second point:
    it’s nothing to do with the ratio of my images, but the images that have been converted in .WEBP with IMAGIFY (but probably any other optimization plugin) : the cover parameter doesn’t work!
    So it could be a compatibility issue with the new images .webp format !

    Thread Starter arfufu

    (@arfufu)

    Hi,
    It is indeed a compatibility issue with .WEBP images. Do you have any plan about that?
    Thank you

    Plugin Author Nikita

    (@nko)

    Hey.

    I don’t know what may cause the problem with deactivated Shortcodes Ultimate ???♂?

    The problem with Imagify is not in cover or incompatibility with webp format. The problem with <picture> tag, which created by Imagify plugin. We don’t support this tag.

    You may add a quick fix manually using custom CSS. It will fix the cover problem, but I’m not sure about other possible problems:

    picture.jarallax-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    

    Regards, nK.

    Thread Starter arfufu

    (@arfufu)

    Hello nK,

    Thank you for your reply and your fix.
    You’re right it’s the <picture> tag indeed. In Inagify we can choose between <picture> tag (preferred as they say) or rewrite .htaccess file. So I kept the <picture> tag option and used your custom CSS and it works thanks!

    About AWB shortcodes not working without Shortcodes Ultimate plugin being activated, it’s very strange… Do you want sreenshots?

    Regards

    Plugin Author Nikita

    (@nko)

    Hey.

    If it is possible, I want to look at your site with this problem. Show me the page, where inserted AWB shortcode and it is not working.

    Regards, nK.

    Thread Starter arfufu

    (@arfufu)

    Hey,

    Yes it’s possible. I just deactivated Shortcodes Ultimate and now I don’t see anymore the background images, but just the raw AWB shortcode.
    I use AWB on every categories / tags on my website; example: https://www.serialhikers.com/responsible-travel/
    All our categories / tags are “broken” now for the test so I would like to leave it this way 1 day maximum if possible.

    Do you understand something?
    Thank you for your time ??

    Thread Starter arfufu

    (@arfufu)

    Hi!
    Did you see it? It’s been a long time the pages were broken so I activated SU again…
    If you didn’t see you can tell me a day and time (UTC) and I will do it again ??

    Plugin Author Nikita

    (@nko)

    Hey.

    The problem is not in our plugin. The problem in the location, where you place shortcodes. By default, WordPress doesn’t support shortcodes inside categories descriptions.

    Seems like Shortcodes Ultimate adds this possibility using custom code.

    Regards, nK.

    Thread Starter arfufu

    (@arfufu)

    Hi @nko,

    Ok interesting… thanks!

    Thread Starter arfufu

    (@arfufu)

    Hi @nko

    I found a solution to activate shortcodes in WP taxonomy pages;
    I added to my child functions.php this code and now I don’t need anymore Shortcodes Ultimate to make AWB work on category pages ??

    add_filter( ‘term_description’, ‘shortcode_unautop’);
    add_filter( ‘term_description’, ‘do_shortcode’ );

    There are other codes to add if you want to activate in widgets, comments …
    source: https://wpsites.net/wordpress-tips/enable-shortcodes-widget-areas/

    Thread Starter arfufu

    (@arfufu)

    Hi @nko

    I’ve seen in the changelog of the new release something about .webp images, but it wasn’t clear. Do you support the <picture> tag now?

    Thank you for your reply
    KR

    Plugin Author Nikita

    (@nko)

    Hey @arfufu

    Yes, the picture tag now supported.

    Regards, nK.

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Compatibility with “Imagify” and “Shortcodes Ultimate”’ is closed to new replies.