• Hello Plugin Developers of “Notification for Telegram”,

    I have recently discovered that there is a function in the index.php file of your plugin, nftb_trim_css_version, that removes the versioning of CSS. This could potentially mislead other developers and I am curious as to why you decided to include this function.

    //trim css per carcaricrae il mio
    function nftb_trim_css_version($src) {
    if (strpos($src, 'ver=')) {
    $src = remove_query_arg('ver', $src);
    }
    return $src;
    }
    add_filter('style_loader_src', 'nftb_trim_css_version', 9999);

    Furthermore, I noticed that not all strings in your plugin are available for translation. For instance, order statuses and the phrase “Order Notes” are not translatable. Perhaps assigning the text domain from WooCommerce could assist with this.

    Despite my questions, I want to express my gratitude for your diligent creativity and your plugin. It is genuinely useful, and I appreciate your hard work.

    Thank you

Viewing 1 replies (of 1 total)
  • //trim css per carcaricrae il mio

    Completely breaks the work of the Elementor editor through the admin panel. Remove this code from the plugin.

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.