Nicolas Lemoine

Results 75 comments of Nicolas Lemoine
trafficstars

Quick note: from 6.5, there is now a [`wp_enqueue_script_module`](https://github.com/WordPress/wordpress-develop/blob/18db904c293f43f5e928b74835d0969cd60c1e2e/src/wp-includes/script-modules.php#L68-L103) function.

@shvlv Friendly bump, any progress on this?

The right hook for what you want to achieve is `frontend_accounts_register_success`

From the readme: ``` add_action('plugins_loaded', function() { // remove the entire account edit section remove_action('plugins_loaded', array(Account::instance(), '_setup')); }, 9); // somewhere before priority 10 ``` Note that you can't remove...

You're right, I forgot about that hook. Have you considered moving the plugins_loaded hooks to after_setup_theme? That would give more freedom to people when using your plugin.

Tiens, salut @quentint :) (we quickly collaborated a long time ago) @joostdekeijzer, I don't have much time to maintain this library (I very occasionally use it actually) and I'm going...

I have the same issue. Any way to add (like we can ignore) custom routes?

> On a related note Intervention/image itself seems unmaintained with no activity since about 6 months. @ADmad Seems like [very active again](https://github.com/Intervention/image/releases) 🙌

Thanks for your feedback !

@JanEbbing I stumbled on that issue too in an app that basically provide a source and target langauge selectors the user can select from. The list of those selectors are...