Well there you go Register Plus Redux is the plugin which is adding your new user verification, and by looking at its code there are no filters or hooks which is said because if you make changes to it they will be lost the next time you update, so i would suggest to contact the plugin developer and ask him to add it.
But a quick fix for you would be to add
do_action('3cees_user_activate',$user_id);
after line 2938 at register-plus-redux.php
and you can then call it like this:
add_action( '3cees_user_activate','your_function');
and your function will run when a user is activated and $user_id will be passed to it.
Related Posts:
- Is There a Plugin Life Cycle Documentation?
- What is the difference between $post_id and get_the_ID()?
- Where to store plugin settings fields
- What is an alternative method to the WordPress private _doing_it_wrong() function
- How can I add columns to the post edit listing to show my custom post data?
- What’s the best method for emptying an option created with the Settings API?
- Shortcode adding p and br tags
- Custom frontend page for plugin without a ‘physical’ page?
- Update exisiting site to 3.5 release candidate
- Using AJAX in a plugin to submit form – REALLY confused
- Plugin Architecture/Design Pattern – is better to use a private Observer/Mediator Pattern for plugin subclasses or WP add_action?
- Having Problem On Getting WP Post Gallery Images URL
- Post added via wp_insert_post with category doesn’t show in category listing
- How to add more than 1 user role to sub-menu pages
- How to get shortcode to work inside a foreach loop called within a shortcode?
- How to properly use a hook to create template for custom product type in a plugin such as Woocommerce? [closed]
- How to bundle a plugin with a theme, or vice versa
- WordPress Media mime type filter problem 4.0
- Using a front controller in a WordPress plugin, any suggestions?
- How do I determine if a category exists by ID?
- Use theme constants in plugin?
- Can I dynamically create a link to my plugin settings/options page from my plugin description?
- How to load the plugin only when logged in?
- Self-hosted plugin update problems
- How to avoid creating first submenu page that is same as menu page?
- How can I display an error message after post has been saved?
- Hook into theme-switching later than `setup_theme`
- Save image as featured image
- Best choice of options/settings framework for plugin/theme development
- wp_count_posts on all post types?
- WP REST API V2 – Add user data to response
- How to update an existing table while updating plugin?
- Applying OO patterns and principles to plugin development
- Include content of file into plugin (ob_start();;include;ob_get_clean()) without
- Is it possible to change a term slug before being saved to the database?
- How To Change Logout Screen Title
- onclick post title in admin area javascript file not working
- How can I edit commit messages in my wp-hosted plugin repo?
- How to integrate CLEditor to comment system?
- Replace youtube embed in wordpress
- Adding dropdown list to tutor lms registration form
- Filtering SelectControl items according the input from another SelectControl in Gutenberg Block (ES5, no JSX)
- Admin – Handle data before creating or updating a post, page or custom post
- How to Bind one post object Type with other postobject Type in Advanced Custom field [closed]
- wp_redirect on base wp-admin and login
- As a plugin developer, how do I remove a plugin from the global plugin directory? [duplicate]
- Creating custom input fields on the admin side
- Valid filenames for add_action’s first parameter
- What to hook into to check a value before a post is published?
- How do I access the menus produced by Dashboard > Appearance > Menus
- Determining URIs for plugin pages
- Filter Categories widget to allow custom sorting?
- How to add a gradient component to a custom block
- wp_schedule_event() set daily, but processed every second
- Can’t get AJAX call working in custom plugin
- How leave selected checkboxes marked after they are selected and saved in the database
- Custom Rest Endpoint: Post/Put/Patch not working
- How to allow only two (or more) users access to a plugin
- Custom avatars in wordpress comments?
- Admin Subpages without Menu entry
- How to create custom dynamic url
- Pagination not working with custom wp_query
- Any way to update_post_meta with html content? It gets stripped and becomes empty
- How to get the number of pages when paginating comments?
- wp_insert_user keeps echoing values
- Getting posts by taxonomy
- can members have multiple registration using the same password?
- Exclude Woocommerce Product Category From Sitemap
- WordPress (pagenow link) in ajaxurl change after i change plugin language
- How to show only the last two categories in a menu?
- Get API auth_token token to renew weekly
- howTo let wordpress endpoint return html-page
- Detect if requested page is PWA on server side
- User meta query using Wildcard
- use a (Polymer) web component within a plugin (or theme)?
- how to add security questions on wp-registration page and validate it
- Allow user to add the php code in wp_mail()
- wp_ajax add_action fuction won’t fire on custom jQuery action
- Hiding WordPress REST endpoints from public viewing using Basic Authentication
- Plugin setting page – update_option problem
- Customize WordPress Admin Menu
- Dedicated server and WPDB Class : huge slow-down of the website
- Add Button to TinyMCE Custom Menu
- How should I use wpdb class to submit a form in admin dashboard?
- Rewriting URLs with a query string
- Registration form Plugin… Email confirmation
- Forcing ALL plugin Admin menus into a separate menu
- How do I create Widget within plugin that uses its own class?
- Looking for Hook that is fired after a plugin or wp upgrade is installed/updated
- How to display posts list on my plugin page?
- How to design WooCommerce-like admin tabs for plugin settings page?
- Woocommerce: block user removing cart item
- WordPress pre-build slider
- Anyway to prevent admin from seeing other admin’s product?
- Build a dynamic block using the default attributes
- Bulk post approval and publishing doesn’t work
- Show Admin Menu
- How to replace content of a block in and re-render on change?
- extending a core block doesn’t work inside the editor
- register_activation_hook doesn’t execute without add_action(‘init’,’some-function’)