Title: phloo's Replies - page 3 | WordPress.org

---

# phloo

  [  ](https://wordpress.org/support/users/phloo/)

 *   [Profile](https://wordpress.org/support/users/phloo/)
 *   [Topics Started](https://wordpress.org/support/users/phloo/topics/)
 *   [Replies Created](https://wordpress.org/support/users/phloo/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/phloo/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/phloo/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/phloo/engagements/)
 *   [Favorites](https://wordpress.org/support/users/phloo/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 31 through 45 (of 157 total)

[←](https://wordpress.org/support/users/phloo/replies/page/2/?output_format=md) 
[1](https://wordpress.org/support/users/phloo/replies/?output_format=md) [2](https://wordpress.org/support/users/phloo/replies/page/2/?output_format=md)
3 [4](https://wordpress.org/support/users/phloo/replies/page/4/?output_format=md)…
[9](https://wordpress.org/support/users/phloo/replies/page/9/?output_format=md) 
[10](https://wordpress.org/support/users/phloo/replies/page/10/?output_format=md)
[11](https://wordpress.org/support/users/phloo/replies/page/11/?output_format=md)
[→](https://wordpress.org/support/users/phloo/replies/page/4/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[HTML Forms - Simple WordPress Forms Plugin] How to filter only one action with hf_action_email_to?](https://wordpress.org/support/topic/how-to-filter-only-one-action-with-hf_action_email_to/)
 *  Thread Starter [phloo](https://wordpress.org/support/users/phloo/)
 * (@phloo)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/how-to-filter-only-one-action-with-hf_action_email_to/#post-14957636)
 * Thanks [@dvankooten](https://wordpress.org/support/users/dvankooten/)
 * In the meantime I did something else and added a domain filter. So that it checks
   if the $to field contains the same domain as the contact form.
 * Your code is appreciated. The best would be if we could check for an action ID.
   If there is one.
 * Regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[HTML Forms - Simple WordPress Forms Plugin] Add possibility to manage forms by editors, not only admins](https://wordpress.org/support/topic/add-possibility-to-manage-forms-by-editors-not-only-admins/)
 *  Thread Starter [phloo](https://wordpress.org/support/users/phloo/)
 * (@phloo)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/add-possibility-to-manage-forms-by-editors-not-only-admins/#post-14925973)
 * Sure. In this case its based on user iD.
    But also very easy to change as per
   role.
 * Would be a good extra for the plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[HTML Forms - Simple WordPress Forms Plugin] Add possibility to manage forms by editors, not only admins](https://wordpress.org/support/topic/add-possibility-to-manage-forms-by-editors-not-only-admins/)
 *  Thread Starter [phloo](https://wordpress.org/support/users/phloo/)
 * (@phloo)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/add-possibility-to-manage-forms-by-editors-not-only-admins/#post-14923316)
 * A temp and easy fix was to add this to my functions:
 *     ```
       function allow_editor_forms() {
       	$user_id = 999;
       	$capabilities = array( 'edit_forms' );
       	$user = new WP_User( $user_id );
   
       	foreach( $capabilities as $cap ) {
       	  $user->add_cap( $cap );
       	}
       }
       allow_editor_forms();
       ```
   
 * After running it once, I removed the action again;
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forminator Forms – Contact Form, Payment Form & Custom Form Builder] Form + dynamic recipients from custom field](https://wordpress.org/support/topic/form-dynamic-recipients-from-custom-field/)
 *  Thread Starter [phloo](https://wordpress.org/support/users/phloo/)
 * (@phloo)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/form-dynamic-recipients-from-custom-field/#post-14863145)
 * Hi Dimitris / [@wpmudev-support6](https://wordpress.org/support/users/wpmudev-support6/)
 * thanks for this guide. Helps a lot.
    I was researching for more solutions and
   found this:
 *     ```
       add_filter( 'forminator_custom_form_mail_admin_recipients',
         function( $recipients, $custom_form, $data, $entry ){
       	$check_field = 'select-1';
       	$emails = array(
       		'emailone' => array(
       			'david.hansen@lpl.com'
       		),
       		'emailtwo' => array(
       			'tanya.mathews@lpl.com'
       		),
       		'emailthree' => array(
       			'richard.mower@lpl.com'
       		),
       		'emailfour' => array(
       			'richard.weintraub@lpl.com'
       		),
       		'emailfive' => array(
       			'lexy.schmidt@lpl.com'
       		),
       		'emailsix' => array(
       			'mdedoyo@bradcable.com'
       		),
       	);
   
       	$check_value = $data[ $check_field ];
   
       	if ( isset( $emails[ $check_value ] ) ) {
       		return $emails[ $check_value ];
       	}
   
       	return $recipients;
         },
        20, 4 );
       ```
   
 * With a little tweaking it will probably work the way without revealing the mail
   addresses in the html source code.
 * Thanks again
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forminator Forms – Contact Form, Payment Form & Custom Form Builder] Form + dynamic recipients from custom field](https://wordpress.org/support/topic/form-dynamic-recipients-from-custom-field/)
 *  Thread Starter [phloo](https://wordpress.org/support/users/phloo/)
 * (@phloo)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/form-dynamic-recipients-from-custom-field/#post-14861202)
 * hi [@wpmudevsupport14](https://wordpress.org/support/users/wpmudevsupport14/)
 * thanks, but this is not what I asked for. I know about email routing.
    As I tried
   to explain: the email addresses come from a custom field from the post/page itself.
 * It is NOT set in the form itself.
 * We want to use 1 global contact form and add the recipient address dynamically.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fast Velocity Minify] How to stop removing preconnect & onload switching?](https://wordpress.org/support/topic/how-to-stop-removing-preconnect-onload-switching/)
 *  Thread Starter [phloo](https://wordpress.org/support/users/phloo/)
 * (@phloo)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/how-to-stop-removing-preconnect-onload-switching/#post-14649819)
 * Thanks for replying [@alignak](https://wordpress.org/support/users/alignak/) 
   but this suggestion was discussed 4 months ago.
 * See my reply: [https://wordpress.org/support/topic/how-to-stop-removing-preconnect-onload-switching/#post-14202633](https://wordpress.org/support/topic/how-to-stop-removing-preconnect-onload-switching/#post-14202633)
 * Plugin still modifies custom code even without header cleanup enabled.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fast Velocity Minify] How to stop removing preconnect & onload switching?](https://wordpress.org/support/topic/how-to-stop-removing-preconnect-onload-switching/)
 *  Thread Starter [phloo](https://wordpress.org/support/users/phloo/)
 * (@phloo)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/how-to-stop-removing-preconnect-onload-switching/#post-14638823)
 * Good suggestions [@ediet](https://wordpress.org/support/users/ediet/)
 * As you can see, there has been no response in three months.
    So I assume the 
   author has no priorities to “fix” this. Unfortunately.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta for WooCommerce] Reset Meta Data broken since last update](https://wordpress.org/support/topic/reset-meta-data-broken-since-last-update/)
 *  Thread Starter [phloo](https://wordpress.org/support/users/phloo/)
 * (@phloo)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/reset-meta-data-broken-since-last-update/#post-14489110)
 * Thanks for your support!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta for WooCommerce] Reset Meta Data broken since last update](https://wordpress.org/support/topic/reset-meta-data-broken-since-last-update/)
 *  Thread Starter [phloo](https://wordpress.org/support/users/phloo/)
 * (@phloo)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/reset-meta-data-broken-since-last-update/#post-14485821)
 * Sure Sol
 * Here you are
    [https://gist.github.com/despecial/9655444435bd755eb47ad5f2392acf50](https://gist.github.com/despecial/9655444435bd755eb47ad5f2392acf50)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta for WooCommerce] Reset Meta Data broken since last update](https://wordpress.org/support/topic/reset-meta-data-broken-since-last-update/)
 *  Thread Starter [phloo](https://wordpress.org/support/users/phloo/)
 * (@phloo)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/reset-meta-data-broken-since-last-update/#post-14485727)
 * That’s not possible (and not necessary). This is a live system with ongoing orders.
   
   We are using the script since more then a year, all worked fine until your latest
   release.
 * Since you switched to “build” the scripts with wp-scripts, it stopped working.
   
   It’s not a compatibility problem with other plugins or themes (console has no
   errors or debug output)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta for WooCommerce] Reset Meta Data broken since last update](https://wordpress.org/support/topic/reset-meta-data-broken-since-last-update/)
 *  Thread Starter [phloo](https://wordpress.org/support/users/phloo/)
 * (@phloo)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/reset-meta-data-broken-since-last-update/#post-14485445)
 * Hi Saravanan,
 * all plugins and themes are up to date.
    As I mentioned before: the function is
   not available. So your plugin is not delivering the correct JS files.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Duplicator - Backups & Migration Plugin - Cloud Backups, Scheduled Backups, & More] Archive File Will Not Download](https://wordpress.org/support/topic/archive-file-will-not-download/)
 *  [phloo](https://wordpress.org/support/users/phloo/)
 * (@phloo)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/archive-file-will-not-download/#post-14232869)
 * Same problem here. Tried to disable htaccess via settings. No change.
 * The problem is also that the archive names always start with a dot.
    Even if 
   I remove it when creating one.
 * This bug happens all the time.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fast Velocity Minify] How to stop removing preconnect & onload switching?](https://wordpress.org/support/topic/how-to-stop-removing-preconnect-onload-switching/)
 *  Thread Starter [phloo](https://wordpress.org/support/users/phloo/)
 * (@phloo)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/how-to-stop-removing-preconnect-onload-switching/#post-14205652)
 * no problem. but unfortunately this is not the way it will work
    preloading “print”
   styles have a lower browser priority, that’s why the first preload link is a 
   normal one. the js fallback switch only works for “print” styles, so a combination
   is not possible.
 * I suggest – if you find the time – to check out the link I added in the first
   post. The speed analysis is very good and shows whats the best approach currently.
 * Will wait til you checked why the “print” stylesheet gets removed.
    A data-field
   to exclude certain files/tags would be awesome data-fvm=”exclude” or something
   like this.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fast Velocity Minify] How to stop removing preconnect & onload switching?](https://wordpress.org/support/topic/how-to-stop-removing-preconnect-onload-switching/)
 *  Thread Starter [phloo](https://wordpress.org/support/users/phloo/)
 * (@phloo)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/how-to-stop-removing-preconnect-onload-switching/#post-14203576)
 * See the first post. I am not downloading it when JS is available.
 * 1. Preconnect
    2. Preload 3. Swap when page is loaded (as fallback)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fast Velocity Minify] How to stop removing preconnect & onload switching?](https://wordpress.org/support/topic/how-to-stop-removing-preconnect-onload-switching/)
 *  Thread Starter [phloo](https://wordpress.org/support/users/phloo/)
 * (@phloo)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/how-to-stop-removing-preconnect-onload-switching/#post-14203452)
 * yes I could merge those two links to one as you mentioned it.
    But there is a
   reason why they are separated
 * > N.B. We can’t go full preload as it isn’t widely enough supported. In fact,
   > at the time of writing, about 20% of this site’s visitors would be unable to
   > make use of it. Consider the print stylesheet a fallback.
 * Only since end of 2020 newer browser support the preload tag.
    So as a fallback,
   it’s split into two requests.

Viewing 15 replies - 31 through 45 (of 157 total)

[←](https://wordpress.org/support/users/phloo/replies/page/2/?output_format=md) 
[1](https://wordpress.org/support/users/phloo/replies/?output_format=md) [2](https://wordpress.org/support/users/phloo/replies/page/2/?output_format=md)
3 [4](https://wordpress.org/support/users/phloo/replies/page/4/?output_format=md)…
[9](https://wordpress.org/support/users/phloo/replies/page/9/?output_format=md) 
[10](https://wordpress.org/support/users/phloo/replies/page/10/?output_format=md)
[11](https://wordpress.org/support/users/phloo/replies/page/11/?output_format=md)
[→](https://wordpress.org/support/users/phloo/replies/page/4/?output_format=md)