Title: matredok's Replies | WordPress.org

---

# matredok

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/users/matredok/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/matredok/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Elementor Website Builder - more than just a page builder] Critical Error Report after Updating to Elementor 3.22.0](https://wordpress.org/support/topic/critical-error-report-after-updating-to-elementor-3-22-0/)
 *  [matredok](https://wordpress.org/support/users/matredok/)
 * (@matredok)
 * [2 years ago](https://wordpress.org/support/topic/critical-error-report-after-updating-to-elementor-3-22-0/#post-17829606)
 * Hello, try to update to 3.22.1 version. It helped me.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Slow website after update to WordPress 6.3](https://wordpress.org/support/topic/slow-site-after-update-to-wordpress-6-3/)
 *  [matredok](https://wordpress.org/support/users/matredok/)
 * (@matredok)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/slow-site-after-update-to-wordpress-6-3/#post-17049957)
 * Same problem here. I have installed a fresh WP on my localhost. No plugins, enything.
   WP is very slow…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pie Register – User Registration, Profiles & Content Restriction] Validation number shows error](https://wordpress.org/support/topic/validation-number-shows-error/)
 *  Thread Starter [matredok](https://wordpress.org/support/users/matredok/)
 * (@matredok)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/validation-number-shows-error/#post-16498842)
 *     ```wp-block-code
       if( (!isset($field_name) || empty($field_name)) && $required)
       ```
   
 * I think the problem is here in registration_form.php line 516
 * empty($field_name) – in this case 0 returns true
 * I have changed it to (for now):
 *     ```wp-block-code
       if( (!isset($field_name) || $field_name == '') && $required)
       ```
   
    -  This reply was modified 3 years, 4 months ago by [matredok](https://wordpress.org/support/users/matredok/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pie Register – User Registration, Profiles & Content Restriction] Fatal error on user registration](https://wordpress.org/support/topic/fatal-error-on-user-registration/)
 *  Thread Starter [matredok](https://wordpress.org/support/users/matredok/)
 * (@matredok)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/fatal-error-on-user-registration/#post-16498455)
 * Ok I know where the problem is. If I’m using “Name” field and I check “hide last
   name” and “required” there is sometimes a problem with registration.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pie Register – User Registration, Profiles & Content Restriction] Fatal error on user registration](https://wordpress.org/support/topic/fatal-error-on-user-registration/)
 *  Thread Starter [matredok](https://wordpress.org/support/users/matredok/)
 * (@matredok)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/fatal-error-on-user-registration/#post-16491961)
 * Hello [@genetech](https://wordpress.org/support/users/genetech/),
 * thank you for your reply 🙂 I still have a fatal error but I found something 
   else in my WP debug log. Could you take a look at it:
 *     ```wp-block-code
       [20-Feb-2023 10:51:19 UTC] PHP Fatal error:  Uncaught Error: Object of class WP_Error could not be converted to string in /home/mypage/domains/mypage.com/public_html/wp-content/plugins/pie-register/classes/registration_form.php:714
       Stack trace:
       #0 /home/mypage/domains/mypage.com/public_html/wp-content/plugins/pie-register/classes/registration_form.php(629): Registration_form->get_usermeta_id_by_key(Object(WP_Error), 'first_name')
       #1 /home/mypage/domains/mypage.com/public_html/wp-content/plugins/pie-register/pie-register.php(3875): Registration_form->addUser(Object(WP_Error), 1)
       #2 /home/mypage/domains/mypage.com/public_html/wp-content/plugins/pie-register/pie-register.php(3714): PieRegister->pie_save_registration()
       #3 /home/mypage/domains/mypage.com/public_html/wp-content/plugins/pie-register/pie-register.php(439): PieRegister->check_register_form()
       #4 /home/mypage/domains/mypage.com/public_html/wp-includes/class-wp-hook.php(308): PieRegister->pie_main('')
       #5 /home/mypage/domains/mypage.com/public_html/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters(NULL, Array)
       #6 /home/mypage/domains/mypage.com/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array)
       #7 /home/mypage/domains/mypage.com/public_html/wp-settings.php(617): do_action('init')
       #8 /home/mypage/domains/mypage.com/public_html/wp-config.php(115): require_once('/home/kochammle...')
       #9 /home/mypage/domains/mypage.com/public_html/wp-load.php(50): require_once('/home/kochammle...')
       #10 /home/mypage/domains/mypage.com/public_html/wp-blog-header.php(13): require_once('/home/kochammle...')
       #11 /home/mypage/domains/mypage.com/public_html/index.php(17): require('/home/kochammle...')
       #12 {main}
       ```
   
 * Any ideas?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Affiliates] Can I use affiliation only on one Woocommerce product?](https://wordpress.org/support/topic/can-i-use-affiliation-only-on-one-woocommerce-product/)
 *  Thread Starter [matredok](https://wordpress.org/support/users/matredok/)
 * (@matredok)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/can-i-use-affiliation-only-on-one-woocommerce-product/#post-15843015)
 * Thank you for a quick response 🙂 Now I know what I need.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Migrate orders with analytics](https://wordpress.org/support/topic/migrate-orders-with-analytics/)
 *  Thread Starter [matredok](https://wordpress.org/support/users/matredok/)
 * (@matredok)
 * [4 years ago](https://wordpress.org/support/topic/migrate-orders-with-analytics/#post-15779310)
 * Unfortunatelly it doesn’t solve my problem.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Migrate orders with analytics](https://wordpress.org/support/topic/migrate-orders-with-analytics/)
 *  Thread Starter [matredok](https://wordpress.org/support/users/matredok/)
 * (@matredok)
 * [4 years ago](https://wordpress.org/support/topic/migrate-orders-with-analytics/#post-15779020)
 * [@nathvi](https://wordpress.org/support/users/nathvi/) V. a11n does it import
   order with analytics?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CAPTCHA 4WP - Antispam CAPTCHA solution for WordPress] reCAPTCHA always false](https://wordpress.org/support/topic/recaptcha-always-false/)
 *  Thread Starter [matredok](https://wordpress.org/support/users/matredok/)
 * (@matredok)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/recaptcha-always-false/#post-15039077)
 * Nice, I think it’s a common problem 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CAPTCHA 4WP - Antispam CAPTCHA solution for WordPress] reCAPTCHA always false](https://wordpress.org/support/topic/recaptcha-always-false/)
 *  Thread Starter [matredok](https://wordpress.org/support/users/matredok/)
 * (@matredok)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/recaptcha-always-false/#post-15011540)
 * I still don’t know how to do it 😛 maybe I should try to find another solution
   🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Hustle - Email Marketing, Lead Generation, Optins, Popups] Mapping the fields is required.](https://wordpress.org/support/topic/mapping-the-fields-is-required/)
 *  Thread Starter [matredok](https://wordpress.org/support/users/matredok/)
 * (@matredok)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/mapping-the-fields-is-required/#post-14972973)
 * Thanks for response, I’m waiting for the fix 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Hustle - Email Marketing, Lead Generation, Optins, Popups] Mapping the fields is required.](https://wordpress.org/support/topic/mapping-the-fields-is-required/)
 *  Thread Starter [matredok](https://wordpress.org/support/users/matredok/)
 * (@matredok)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/mapping-the-fields-is-required/#post-14969114)
 * Any ideas?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Hustle - Email Marketing, Lead Generation, Optins, Popups] Mapping the fields is required.](https://wordpress.org/support/topic/mapping-the-fields-is-required/)
 *  Thread Starter [matredok](https://wordpress.org/support/users/matredok/)
 * (@matredok)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/mapping-the-fields-is-required/#post-14965092)
 * Sorry for a mistake 🙂
 * [https://drive.google.com/file/d/1hQRCBcyg19qYjob62frxU9TdwROP1RA2/view?usp=sharing](https://drive.google.com/file/d/1hQRCBcyg19qYjob62frxU9TdwROP1RA2/view?usp=sharing)
 * and new error:
    [https://drive.google.com/file/d/14M2rGkpTdctJSOneL38pyyi5RiiVKvO0/view?usp=sharing](https://drive.google.com/file/d/14M2rGkpTdctJSOneL38pyyi5RiiVKvO0/view?usp=sharing)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Hustle - Email Marketing, Lead Generation, Optins, Popups] Mapping the fields is required.](https://wordpress.org/support/topic/mapping-the-fields-is-required/)
 *  Thread Starter [matredok](https://wordpress.org/support/users/matredok/)
 * (@matredok)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/mapping-the-fields-is-required/#post-14962517)
 * Plugin files:
    [https://drive.google.com/file/d/1YAsjglgSi_ULtqdQ-zZ7cdvtuqcsBPVa/view?usp=sharing](https://drive.google.com/file/d/1YAsjglgSi_ULtqdQ-zZ7cdvtuqcsBPVa/view?usp=sharing)
 * Screenshot:
    [https://drive.google.com/file/d/10z3-NjT0VZ8ADgA9VGAH5khxyVjvWWvN/view?usp=sharing](https://drive.google.com/file/d/10z3-NjT0VZ8ADgA9VGAH5khxyVjvWWvN/view?usp=sharing)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Hustle - Email Marketing, Lead Generation, Optins, Popups] How to deregister style](https://wordpress.org/support/topic/how-to-deregister-style/)
 *  Thread Starter [matredok](https://wordpress.org/support/users/matredok/)
 * (@matredok)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/how-to-deregister-style/#post-14959283)
 * Thanks! 🙂

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/users/matredok/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/matredok/replies/page/2/?output_format=md)