Forum Replies Created

Viewing 15 replies - 1 through 15 (of 119 total)
  • Plugin Contributor Nguyen Tuan

    (@nguyencongtuan)

    Hi

    That filter we stopped support from 2018 ( check the changelog ), the cause WordPress had their lazy for that function. I think some plugins or theme from your site are using old code so it works when you turn it on

    If you want to turn it ON for you without need to edit directly on our plugin, try add this code to functions.php of your current active theme

    add_filter( 'wp_get_attachment_image_attributes', array( '\A3Rev\LazyLoad', 'get_attachment_image_attributes' ), 200 );

    • This reply was modified 1 year, 1 month ago by Nguyen Tuan.
    Plugin Contributor Nguyen Tuan

    (@nguyencongtuan)

    Hi freechelmi,

    Thanks for report that issue, we just release new version 3.1.1 include that fixed


    = 3.1.1 – 2023/09/14 =
    * This maintenance release has a fatal error fix that came in with the 3.1 release
    * Fix – Remove call A3Rev\WCCompare\Hook_Backbone classname that is not included into the free version of the plugin
    * Props – WordPress user @freechelmi for reporting the bug.

    Plugin Contributor Nguyen Tuan

    (@nguyencongtuan)

    Hi Marcel

    Can you give me a link to your site so i can see the issue?

    Plugin Contributor Nguyen Tuan

    (@nguyencongtuan)

    Hi Borja

    Thanks for report that issue, we missed that, just release new version for fix that issue

    Plugin Contributor Nguyen Tuan

    (@nguyencongtuan)

    Hi Borja

    We just release new version 2.8.0 has support for admin- Ajax

    Plugin Contributor Nguyen Tuan

    (@nguyencongtuan)

    Hi DesignDNA

    Thanks for reporting that issue, but we have test and can’t replicate that issue, also no one else has reported it, so it’s just issue on your server config

    We are using the $upload_dir = wp_upload_dir() from core WP to get path of uploads/ folder via $upload_dir[‘basedir’]. It’s seem some config from your site is returning wrong value of $upload_dir[‘basedir’]

    I have a look on your site https://irisgomez.co.za/, and see that less file is copied to https://irisgomez.co.za/wp-content/uploads/sass/wc_predictive_search_mixins.less , and dynamic style from plugin are generating fine.

    Tell me if you still seeing that error anywhere, i think it just appear one time when get some conflict with config from your site.

    Regards,
    Nguyen

    Plugin Contributor Nguyen Tuan

    (@nguyencongtuan)

    Hi Borja

    If you disable WP JSON, you should turn AJAX Load off from our plugin settings so that plugin is calling to custom REST API with AJAX Load is enabled.

    Plugin Contributor Nguyen Tuan

    (@nguyencongtuan)

    Hi

    With that structure from core bloc then it’s impossible to add exclude class for img tag

    And the cause your script dont work because lazy load is checking exclude class name by PHP before HTML is output on frontend so your javascript will not work

    Plugin Contributor Nguyen Tuan

    (@nguyencongtuan)

    Hi @kaizen502

    I have a look on your issue and try use the video link without http or https from my local, lazy load still is applying to that link

    I also compare html code is generated by our plugin with what i saw from your site, it look not correct, before the video show on viewport, it should has “data-src” attribute ( what our plugin filter before output on screen ), but i did not see it here, i think your theme or any plugin on your site with lazy feature was enabled and conflict with our plugin, you should have a look to see and disable it . If can’t find that, you should change the Loading Effect from FADE IN to SPINNER so it will not show the grey overlay here.

    Thanks
    Nguyen

    Plugin Contributor Nguyen Tuan

    (@nguyencongtuan)

    Hi Brianne

    Thanks for reporting that bug, we just fix it and release version 2.2.2, please update to latest version and see if the issue is resolved

    * This maintenance release has an Undefined variable bug fix plus compatibility with WooCommerce 6.8.2
    * Tweak – Check for compatibility with WooCommerce version 6.8.2
    * Fix – Update variable name from $psad_product_show_type to $psad_shop_product_show_type

    Regards,
    Nguyen

    Plugin Contributor Nguyen Tuan

    (@nguyencongtuan)

    Hi

    Thanks for report that issue, i think the cause that WooFunnels plugin is using apply_filters the_content for custom content , but our plugin just support the_content when it’s called from post, page and it’s cause it’s returning empty content

    We have fixed that on version 2.5.4 just release today, please download latest version, thanks

    = 2.5.4 – 2022/04/18 =
    * This maintenance release has 2 fixes for plugins that filter custom content without post or page.
    * Fix – Return custom content for 3rd plugin that use apply_filters ‘the_content’ instead of the post, page or post type.
    * Fix – Return custom content for 3rd plugin that use apply_filters ‘the_excerpt’ instead of the post, page or post type.

    Plugin Contributor Nguyen Tuan

    (@nguyencongtuan)

    Hi

    You can do this via settings of plugin

    First you disable for auto placement at bottom or top of content for post type you are editing with Elementor

    https://gyazo.com/36412e76a87b7d98f12a61d87a20bac0

    Then you can use the shortcode and put at any position via shortcode block of Elementor
    [pvc_stats postid="" increase="1" show_views_today="1"]

    leave empty postid for use ID of current post

    https://gyazo.com/f7f252ce4c376231d5a4322eb03e3c86

    Tell me if you get any issue

    Regards,
    Nguyen

    Plugin Contributor Nguyen Tuan

    (@nguyencongtuan)

    Hi

    I have check and see that you are using wrong classnames and urls, that close image dont have any class so you can’t use skip image classes

    You can add this custom style to Customize of WordPress or your style of theme

    .cp-overlay-close img {
    background: none;
    }
    • This reply was modified 4 years, 9 months ago by Nguyen Tuan.
    Plugin Contributor Nguyen Tuan

    (@nguyencongtuan)

    Hi

    I have look on <noscript> that code html you use for load video and it’s seem not correct, and it’s cause why don’t see video play

    You should change this html structure

    <video poster="https://faranesh.com/blog/wp-content/uploads/2019/04/what-is-a-stock-exchange.jpg" controls="controls" width="95%" height="95%">
       <source src="https://faranesh.com/blog/wp-content/uploads/2020/02/bourse2.mp4" type="video/mp4" />
    </video>

    To
    <video poster="https://faranesh.com/blog/wp-content/uploads/2019/04/what-is-a-stock-exchange.jpg" controls="controls" width="95%" height="95%" src="https://faranesh.com/blog/wp-content/uploads/2020/02/bourse2.mp4" type="video/mp4"></video>

    Don’t use source inside video, it’s way that Video block from WP Gutenberg generate when you insert video url too

    Regards,
    Nguyen

    Thread Starter Nguyen Tuan

    (@nguyencongtuan)

    There are 2 javascript errors that your plugin affect to other pages of Dashboard

    Your plugin is enqueuing the bootstrap and some other scripts to all pages Dashboard and it affect to other pages, can you just fix it ?

    • This reply was modified 5 years, 2 months ago by Nguyen Tuan.
Viewing 15 replies - 1 through 15 (of 119 total)