[wordpress插件] Dismiss Privacy Nag消除隐私问题

wordpress 插件 文章 2020-04-19 04:20 558 0 全屏看文

AI助手支持GPT4.0

评分
0
描述

Dismiss Privacy Pointer Nag, (added in version 4.9.6 — partially GDPR OFF) and admin notification, when it is activated, or if it is in mu-plugins directory.

关闭隐私指针 Nag(在版本4.9.6中添加-部分GDPR关闭)和管理员通知(在激活时或在mu-plugins目录中)。

Development takes place at GitHub and GitHub

/travis-ci.org/luciano-croce/dismiss-privacy-nag" rel="nofollow">Travis CI.

/travis-ci.org/luciano-croce/dismiss-privacy-nag“ rel =” nofollow“>特拉维斯CI 。

Compatible with GlotPress Translations.

兼容 GlotPress翻译

Approved in the repository of the plugin directory on 2018-05-09

已于2018-05-09在插件目录的存储库中批准

If you need to completely disable and remove all Privacy Tools, Privacy Pointers, Privacy Notifications Nag, you can useDismiss Privacy Tools“.

privacy-tools“>关闭隐私工具”。

Features:

功能:

Based to the

基于

rel="nofollow">Detailed Guidelines 11 principle: should not hijack the admin dashboard.

rel =“ nofollow”>详细指南11 原则:不应劫持管理控制台。

    • Users prefer and expect plugins to feel like part of WordPress.
    • 用户更喜欢并期望插件看起来像WordPress的一部分。

    • Constant nags and overwhelming the admin dashboard with unnecessary alerts detract from this experience.
    • 持续不断的烦恼和不必要的警报使管理仪表板不堪重负。

    • Upgrade prompts, notices, alerts, and the like must be limited in scope and used sparingly, be that contextually or only on the plugin’s setting page.
    • 升级提示,通知,警报等必须在范围上加以限制,并且必须根据上下文或仅在插件的设置页面上谨慎使用。

    • Site wide notices or embedded dashboard widgets must be dismissible or self-dismiss when resolved.
    • 解决后,站点范围内的通知或嵌入的仪表板小部件必须是可忽略的或自消失的。

    • Error messages and alerts must include information on how to resolve the situation, and remove themselves when completed.
    • 错误消息和警报必须包含有关如何解决情况的信息,并在完成后将其删除。

    Because I made this?

    因为我做了这个?

    Seem that the new privacy pointer is not totally auto dismissible when is clicked one of the any admin menu links, for example:

    似乎,当单击任何管理菜单链接之一时,新的隐私指针不会完全被自动禁用,例如:

      Add an admin pointer for new privacy features in version 4.9.6:

      为版本4.9.6中的新隐私功能添加管理员指针:

        • The new features are very important for some users, because of their GDPR obligations.
        • 新功能由于某些GDPR义务而对某些用户非常重要。

        • They’re also spread across multiple top-level menus, making them less discoverable.
        • 它们还分布在多个顶级菜单中,因此较难发现。

        • An admin pointer will help to ensure that users are aware of the new tools and how to find them.
        • 管理员指针将有助于确保用户了解新工具以及如何找到它们。

        Props desrosj, andreamiddleton, allendav, xkon.

        道具desrosj,andreamiddleton,allendav,xkon。

        Fixes #43942?

        修复#43942?

          Technical References

          技术参考

          Translators: leave all technical references in English!

          译者:将所有技术参考保留为英语!

          Dismiss all the new feature pointers.

          关闭所有新功能指针。

          @since 3.3.0

          @ 3.3.0起

          All pointers can be disabled using the following:

          可以使用以下命令禁用所有指针:

          remove_action( ‘admin_enqueue_scripts’, array( ‘WP_Internal_Pointers’, ‘enqueue_scripts’ ) );

          remove_action('admin_enqueue_scripts',array('WP_Internal_Pointers','enqueue_scripts'));

          # This work but “unfortunately” as alternative solution that remove all pointers!

          #这项工作有效,但是“不幸的是”作为删除所有指针的替代解决方案!

          @param string $hook_suffix The current admin page.

          @param字符串$ hook_suffix当前管理页面。

          Dismiss a pointer for the new privacy tools.

          关闭新隐私工具的指针。

          @since 4.9.6

          @自4.9.6起

          Privacy pointer can be disabled using the following:

          可以使用以下命令禁用隐私指针:

          remove_action( ‘admin_print_footer_scripts’, array( ‘WP_Internal_Pointers’, ‘pointer_wp496_privacy’ ) );

          remove_action('admin_print_footer_scripts',array('WP_Internal_Pointers','pointer_wp496_privacy'));

          # This for now not work: due a bug?

          #目前暂时无法使用:是否有错误?

          Investigating… wp496_privacy ???

          正在调查…wp496_privacy ???

          @param string $hook_suffix The current admin page.

          @param字符串$ hook_suffix当前管理页面。

          Credits

          信用

          Issue (bug) fixed by my brother Garrett Hyder and tested from Pascal Birchler (swissspidy): refer to Ticket 45529 opened by Dale Harrison.

          45529 /“; rel =” nofollow“>门票45529 由戴尔·哈里森。

          >

          >

          Thanks to Ross McKay (webaware) and Stephen Edgar (netweb) to support me in New Zealander (English) translations, in some typo errors, and some minor (English) error stuff.

          感谢Ross McKay(网络软件)和Stephen Edgar(netweb)为我提供新西兰语(英语)翻译,某些拼写错误和一些小错误(英语)的支持。

          Thanks to Fernando Tellado (fernandot) and Nilo Velez to support me in Spanish translations.

          感谢Fernando Tellado(fernandot)和Nilo Velez在西班牙语翻译中为我提供支持。

          Thanks to all!

          谢谢大家!

          Tips

          提示

          A neat trick, is to put this single file dismiss-privacy-nag.php (not its parent directory) in the /wp-content/mu-plugins/ directory (create it if not exists) so you won't

          一个巧妙的技巧是将单个文件dismiss-privacy-nag.php(而不是其父目录)放在/ wp-content / mu-plugins /目录中(如果不存在则创建它),因此您不会

          even have to enable it, and will be loaded by default, also, since first step installation of WordPress setup!

          自从第一步安装WordPress安装程序以来,甚至都必须启用它,并且默认情况下也会将其加载!

          Also, for translation functionality, put all files of the single languages (dismiss-privacy-nag-en_US.mo for example) that you need (not its parent directory) in the /wp-content/mu-plugins/ directory

          此外,对于翻译功能,请将您需要的所有单一语言文件(例如dismiss-privacy-nag-en_US.mo)(而不是其父目录)放在/ wp-content / mu-plugins /目录中

          (create it if not exists) and will also be loaded by default, since first step installation of WordPress setup!

          (如果不存在,则创建它),并且由于WordPress安装程序的第一步安装,因此也会默认加载它!

          Note that mu-plugins functionality is available since WP 2.8+ or greater and is not present in WP 2.7+ or previous.

          请注意,自WP 2.8或更高版本开始,提供了mu-plugins功能,而在WP 2.7+或更高版本中则不提供。

          About it

          关于它

          The code of this plugin is not written with a PHP framework, but manually, with a simple PHP editor compatible UTF-8 without BOM, and Unix LF.

          此插件的代码不是用PHP框架编写的,而是手动编写的,使用不带BOM的简单PHP编辑器兼容的UTF-8和Unix LF。

          To avoid code corruption, do not edit it with WordPress embedded editor, or with any specifications incompatible editor.

          为避免代码损坏,请勿使用WordPress嵌入式编辑器或任何不兼容规范的编辑器对其进行编辑。

          This author is exonerated from any responsibility or damage (directly or indirectly) caused and due to the use of this bad practice.

          不承担由于使用此不良做法而引起的任何责任(直接或间接)或损害。

          super light secure and fast plugin easy on server resources

          超级轻便,安全,快捷的服务器资源插件

          About me

          关于我

          Dismiss Privacy Nag is developed by Luciano Croce, 13-years “officially” WordPress Plugins & Themes Developer Senior, Co-Author of plugin Classic Editor, polyglot (based on English, French, Spanish, German, Portuguese, Italian, Ligurian

          Dismiss Privacy Nag由Luciano Croce开发,Luciano Croce是“正式”的WordPress插件和主题开发人员13年,插件经典编辑的共同作者,polyglot(基于英语,法语,西班牙语,德语,葡萄牙语,意大利语,利古里亚语)

          ), GTE en_GB & en_CA, PTE for Plugins & Themes in more languages, PTE for Italian WordPress.org & Plugins & Themes Directory, Local Manager of Ligurian Language Community for WP LIJ, Validator English (UK) for WordPress.com, translator for

          ),GTE en_GB和en_CA,用于更多语言的插件和主题的PTE,用于意大利语WordPress.org和插件和主题目录的PTE,用于WP LIJ的利古里亚语言社区本地经理,用于WordPress.com的Validator English(UK),用于翻译的翻译

          my & other projects, book author of TRUE DOS (the dark side of its history from the dark side of its users) Code Tweaker & Bug Hunter, Security Mechanic & WPMU Lover, Freelancer & Volunteer.

          我的项目和其他项目,TRUE DOS的作者(从用户的阴暗面来看,它是历史的阴暗面); Code Tweaker和Bug Hunter;安全机制和WPMU Lover; Freelancer和Volunteer。

          Privacy

          隐私

          This plugin does not collect or store any user related data or personally identifying information, does not set any cookies, and it does not connect to any third-party websites.

          此插件不会收集或存储任何与用户相关的数据或个人识别信息,不会设置任何Cookie,也不会连接到任何第三方网站。

          It only uses functionality that is available in WordPress.

          它仅使用WordPress中可用的功能。

          In those terms, it does not affect your website users’ privacy in any way.

          按照这些条款,它不会以任何方式影响您网站用户的隐私。

          GDPR

          GDPR

          This plugin does not collect or store any user related data or personally identifying information, but does not do anything to make your site less GDPR compliant.

          此插件不会收集或存储任何与用户相关的数据或个人识别信息,但不会做任何使您的网站不符合GDPR要求的事情。

          I have done my best to ensure that is 100% GDPR compliant, but I’m not a lawyer, so can’t guarantee anything.

          我已尽力确保符合GDPR 100%的要求,但我不是律师,所以不能保证任何事情。

          To determine if your site is GDPR compliant, please consult a lawyer.

          要确定您的网站是否符合GDPR,请咨询律师。

下载地址
https://downloads.wordpress.org/plugin/dismiss-privacy-nag.zip
-EOF-

AI助手支持GPT4.0