Title: urgul's Replies | WordPress.org

---

# urgul

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell] Problem with resetting customer account password in a funnel](https://wordpress.org/support/topic/problem-with-resetting-customer-account-password-in-funnel/)
 *  Thread Starter [urgul](https://wordpress.org/support/users/urgul/)
 * (@urgul)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/problem-with-resetting-customer-account-password-in-funnel/#post-18052377)
 * Hi [@cssultan](https://wordpress.org/support/users/cssultan/) ,
 * Any news on this?
    -  This reply was modified 1 year, 10 months ago by [urgul](https://wordpress.org/support/users/urgul/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell] Can’t style payment section in checkout widget (Elementor) after update](https://wordpress.org/support/topic/cant-style-payment-section-in-checkout-widget-elementor-after-update/)
 *  Thread Starter [urgul](https://wordpress.org/support/users/urgul/)
 * (@urgul)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/cant-style-payment-section-in-checkout-widget-elementor-after-update/#post-17980086)
 * Hi [@cssultan](https://wordpress.org/support/users/cssultan/) , it’s working 
   fine now, thank you.
 * And sorry for the delay – I was on a vacation.
 * I’d love to give you 5 stars, but I’m waiting for a feature for the customer 
   to log in and/or reset their password without leaving the funnel. This is a key
   feature for me. With this WPFunnels will be a complete product that will fully
   deserve 5 stars and even more! For now, the lack of this capability is quite 
   annoying (and creates unnecessary confusion) for both me and my returning customers.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell] Problem with resetting customer account password in a funnel](https://wordpress.org/support/topic/problem-with-resetting-customer-account-password-in-funnel/)
 *  Thread Starter [urgul](https://wordpress.org/support/users/urgul/)
 * (@urgul)
 * [2 years ago](https://wordpress.org/support/topic/problem-with-resetting-customer-account-password-in-funnel/#post-17934829)
 * Hi [@cssultan](https://wordpress.org/support/users/cssultan/) , it’s been a while,
   so I’d like to ask. Do you have any ETA for this feature? This is really crucial
   for UX, especially when a customer wants to buy another product using the same
   email address he/she used for a previous purchase (so he/she already have a customer
   account).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell] Issue with VAT Field Validation in WPFunnels checkout when using FakturaXL plug](https://wordpress.org/support/topic/issue-with-vat-field-validation-in-wpfunnels-checkout-when-using-fakturaxl-plug/)
 *  Thread Starter [urgul](https://wordpress.org/support/users/urgul/)
 * (@urgul)
 * [2 years ago](https://wordpress.org/support/topic/issue-with-vat-field-validation-in-wpfunnels-checkout-when-using-fakturaxl-plug/#post-17934811)
 * Hi [@cssultan](https://wordpress.org/support/users/cssultan/), sorry for the 
   delay – I was on vacation.
 * I found a solution of this issue. I added this php snippet:
 *     ```wp-block-code
       add_filter( 'woocommerce_checkout_get_value', 'uncheck_billing_vat_on', 10, 2 );function uncheck_billing_vat_on( $value, $input ) {if ( $input === 'billing_vat_on' ) {return '';}return $value;}
       ```
   
 * and changed the snippet with VAT validation:
 *     ```wp-block-code
       // Zapisujemy stan checkboxa w sesjiadd_action('woocommerce_checkout_process', 'save_vat_checkbox_state');function save_vat_checkbox_state() {    WC()->session->set('billing_vat_on', isset($_POST['billing_vat_on']) ? true : false);}// Modyfikujemy funkcję walidującą NIPadd_filter('woocommerce_checkout_posted_data', 'sanitize_and_validate_billing_vat_number');function sanitize_and_validate_billing_vat_number($data) {    $billing_vat_on = WC()->session->get('billing_vat_on');        if ($billing_vat_on) {        $billing_vat_number = isset($data['billing_vat_number']) ? $data['billing_vat_number'] : '';                // Jeśli pole NIP jest puste, nie dodajemy błędu        if (empty($billing_vat_number)) {            return $data;        }        // Usuwa spacje i myślniki z numeru NIP        $billing_vat_number = str_replace([' ', '-'], '', $billing_vat_number);        // Sprawdza, czy numer NIP ma 10 cyfr        if (!preg_match('/^[0-9]{10}$/', $billing_vat_number)) {            wc_add_notice(__('<strong>Podany numer NIP jest niepoprawny.</strong> Wpisz polski numer NIP bez spacji i myślników.', 'woocommerce'), 'error');        } else {            // Wylicza sumę kontrolną            $weights = [6, 5, 7, 2, 3, 4, 5, 6, 7];            $sum = 0;            for ($i = 0; $i < 9; $i++) {                $sum += $billing_vat_number[$i] * $weights[$i];            }            $control_number = $sum % 11;            // Sprawdza, czy suma kontrolna jest poprawna            if ($control_number != $billing_vat_number[9]) {                wc_add_notice(__('<strong>Podany numer NIP jest niepoprawny.</strong> Wpisz polski numer NIP bez spacji i myślników.', 'woocommerce'), 'error');            } else {                // Zapisuje przefiltrowaną wartość pola "billing_vat_number"                $data['billing_vat_number'] = $billing_vat_number;            }        }    }    return $data;}// Dodajemy akcję czyszczenia sesji po zakończeniu zamówieniaadd_action('woocommerce_thankyou', 'clear_vat_session');function clear_vat_session() {    WC()->session->__unset('billing_vat_on');}add_action('wp_ajax_update_vat_checkbox', 'update_vat_checkbox_session');add_action('wp_ajax_nopriv_update_vat_checkbox', 'update_vat_checkbox_session');function update_vat_checkbox_session() {    WC()->session->set('billing_vat_on', ($_POST['state'] === '1'));    wp_die();}
       ```
   
 * I don’t know if it’s the best solution, but it works for now.
 * Would you like to get access to staging site to explore this?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell] Problem with resetting customer account password in a funnel](https://wordpress.org/support/topic/problem-with-resetting-customer-account-password-in-funnel/)
 *  Thread Starter [urgul](https://wordpress.org/support/users/urgul/)
 * (@urgul)
 * [2 years ago](https://wordpress.org/support/topic/problem-with-resetting-customer-account-password-in-funnel/#post-17902370)
 * Hi [@cssultan](https://wordpress.org/support/users/cssultan/)
 * This is 100% feasible, see how FunnelKit solved this with Smart Login – this 
   is exactly the solution I am asking you for. Both login and password change are
   done within the funnel. Such a solution would be amazing!
 * [https://www.youtube.com/watch?v=g1m-QhKAL1s&ab_channel=FunnelKitHQ](https://www.youtube.com/watch?v=g1m-QhKAL1s&ab_channel=FunnelKitHQ)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell] Issue with VAT Field Validation in WPFunnels checkout when using FakturaXL plug](https://wordpress.org/support/topic/issue-with-vat-field-validation-in-wpfunnels-checkout-when-using-fakturaxl-plug/)
 *  Thread Starter [urgul](https://wordpress.org/support/users/urgul/)
 * (@urgul)
 * [2 years ago](https://wordpress.org/support/topic/issue-with-vat-field-validation-in-wpfunnels-checkout-when-using-fakturaxl-plug/#post-17902322)
 * I discovered that this problem is not related to Woocommerce FakturaXL, but to
   the WPFunnels checkout widget (Elementor) itself.
 * Explaining once again:
 * I have created additional fields in Checkout Field Editor for WooCommerce (Pro)
   for my checkout purposes:
    1. checkbox – “I want to receive an invoice”
    2. and 2 more fields – “company name” and NIP (VAT), which appear only when “I 
       want to receive an invoice” is checked, and hide when uchecked.
 * The problem is that the first time I check the box “I want to receive an invoice”
   and enter an invalid NIP number, the code that validates its correctness works,
   but when I uncheck this checkbox and check it again, the validation no longer
   works (really strange behavior). This problem occurs regardless of whether the
   Woocommerce FakturaXL plugin is enabled or not, so it has nothing in common with
   it.
 * I’ll add that after the WPFunnels checkout page loads, all I have to do is check
   the checkbox “I want to receive an invoice”, uncheck it and check it again and
   then enter the wrong NIP (VAT) and the validation no longer works.
 * To sum up – after checking the checkbox “I want to receive an invoice” for the
   first time and entering the wrong NIP, the validation works, after unchecking
   the checkbox and checking it again the validation no longer works.
 * I should add that in the standard Elementor checkout widget this problem does
   not occur – the snippet validates the correctness of the NIP (VAT) field always,
   no matter how many times I check or uncheck the checkbox “I want to receive an
   invoice”.
 * So the problem is with WPFunnels.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell] Problem with resetting customer account password in a funnel](https://wordpress.org/support/topic/problem-with-resetting-customer-account-password-in-funnel/)
 *  Thread Starter [urgul](https://wordpress.org/support/users/urgul/)
 * (@urgul)
 * [2 years ago](https://wordpress.org/support/topic/problem-with-resetting-customer-account-password-in-funnel/#post-17892576)
 * Hi [@cssultan](https://wordpress.org/support/users/cssultan/),
 * Thanks, it would be great if you could solve this problem, as it is quite problematic
   and very bad for UX.
 * In addition, after resetting the password, the customer can go to the shopping
   cart in the store (not in the funnel), where he/she will find the product added
   in the checkout step in the funnel, but there he/she will no longer receive the
   discount that is set in the WPFunnels funnel in the checkout step. This is an
   additional problem that should be fixed.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Code Snippets] Could not create snippet. Request failed with status code 406](https://wordpress.org/support/topic/could-not-create-snippet-request-failed-with-status-code-406/)
 *  Thread Starter [urgul](https://wordpress.org/support/users/urgul/)
 * (@urgul)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/could-not-create-snippet-request-failed-with-status-code-406/#post-17782705)
 * The problem has been solved. Modsec was blocking the request.
    -  This reply was modified 2 years, 2 months ago by [urgul](https://wordpress.org/support/users/urgul/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Analytify - Google Analytics Dashboard For WordPress (GA4 analytics tracking)] Analytify causes a critical error when used with WP File Download Addon](https://wordpress.org/support/topic/analytify-causes-a-critical-error-when-used-with-wp-file-download-addon/)
 *  Thread Starter [urgul](https://wordpress.org/support/users/urgul/)
 * (@urgul)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/analytify-causes-a-critical-error-when-used-with-wp-file-download-addon/#post-17561781)
 * Hi [@emma24](https://wordpress.org/support/users/emma24/),
 * Thank you for responding so quickly. Unfortunately, the solution you provided
   via email does not solve the problem. I have sent you a reply with some additional
   details.
 * Regards.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Tracker for Elementor] 1.3.1.3 crashes icon list element in the Elementor’s editor!](https://wordpress.org/support/topic/1-3-1-3-crashes-site/)
 *  Thread Starter [urgul](https://wordpress.org/support/users/urgul/)
 * (@urgul)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/1-3-1-3-crashes-site/#post-16033510)
 * Why have you marked this issue as resolved when it is NOT? It took you over 1
   month to reply and all you can say is “this is a bug, try using a previous version
   of the plugin”? Ridiculous! Fix your plugin first because it causes issues.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Happy Addons for Elementor] Justified Grid widget cuts off portrait images](https://wordpress.org/support/topic/justified-grid-widget-cuts-off-portrait-images/)
 *  Thread Starter [urgul](https://wordpress.org/support/users/urgul/)
 * (@urgul)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/justified-grid-widget-cuts-off-portrait-images/#post-15689030)
 * Hi,
 * but it’s not NEW feature request. It’s request to improve existing widget with
   such basic feature as responsiveness that should be done at a first place 😉
 * Regards.
    -  This reply was modified 4 years, 2 months ago by [urgul](https://wordpress.org/support/users/urgul/).
    -  This reply was modified 4 years, 2 months ago by [urgul](https://wordpress.org/support/users/urgul/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Happy Addons for Elementor] Justified Grid widget cuts off portrait images](https://wordpress.org/support/topic/justified-grid-widget-cuts-off-portrait-images/)
 *  Thread Starter [urgul](https://wordpress.org/support/users/urgul/)
 * (@urgul)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/justified-grid-widget-cuts-off-portrait-images/#post-15686344)
 * Great news! Thank you 🙂
 * Could you add a feature to set different image height for desktop, tablets and
   mobile, too? This feature would be great (I wouldn’t have to set different galleries
   for different devices)?
    -  This reply was modified 4 years, 2 months ago by [urgul](https://wordpress.org/support/users/urgul/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Happy Addons for Elementor] Justified grid not justifying height after update to 3.5.2](https://wordpress.org/support/topic/justified-grid-not-justifying-height-after-update-to-3-5-2/)
 *  [urgul](https://wordpress.org/support/users/urgul/)
 * (@urgul)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/justified-grid-not-justifying-height-after-update-to-3-5-2/#post-15686334)
 * Great news! Thank you 🙂
 * Could you add a feature to set different image height for desktop, tablets and
   mobile? This feature would be great (I wouldn’t have to set different galleries
   for different devices)?
    -  This reply was modified 4 years, 2 months ago by [urgul](https://wordpress.org/support/users/urgul/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Happy Addons for Elementor] Justified grid not justifying height after update to 3.5.2](https://wordpress.org/support/topic/justified-grid-not-justifying-height-after-update-to-3-5-2/)
 *  [urgul](https://wordpress.org/support/users/urgul/)
 * (@urgul)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/justified-grid-not-justifying-height-after-update-to-3-5-2/#post-15686306)
 * Why this thread is marked as resolved?
 * I agree with bbuerger!
 * With the latest update the Justified Grid is messed up! Revert back to how it
   was before the update or add the option of fixed height. I’ve multiple pages 
   with Justified Grid on and all of them are messed up now! 🙁
    -  This reply was modified 4 years, 2 months ago by [urgul](https://wordpress.org/support/users/urgul/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Social Ninja – Embed Social Feeds, User Reviews & Chat Widgets] Elementor reviews widget styling doesn’t work](https://wordpress.org/support/topic/elementor-reviews-widget-styling-doesnt-work/)
 *  Thread Starter [urgul](https://wordpress.org/support/users/urgul/)
 * (@urgul)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/elementor-reviews-widget-styling-doesnt-work/#post-15543498)
 * Plugins versions:
 * WP Social Ninja 3.5.4
    Elementor 3.6.2 Elementor Pro 3.6.4

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

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