• Resolved absatzformat

    (@absatzformat)


    Hello @teamwoofunnels

    We are using Funnel Builder 2.2.0, Woocommerce 6.3.1 and Germanized 3.8.4.
    Checkboxes (terms) in the checkout template get displayed multiple times.

    I tracked it down to function germanized_terms registered on hook wfacp_after_checkout_page_found in class WFACP_Compatibility_With_WC_Germinized (you may correct the spelling to Germanized).

    File hint:
    wp-content/plugins/funnel-builder/modules/checkouts/compatibilities/plugins/class-germinized.php:32

    Could you please look into that.

    Kind regards.
    Johannes

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Johannes,

    Thank you so much for this thread.

    We have tested things at our end and fixed the spelling issue.

    We have been testing the compatibility with Germazied at our end and in all our test we get a single checkbox.

    See the screenshot https://imgur.com/zZcRjK1

    Please go to WooCommerce> Status
    and paste the list of active plugins list https://i.imgur.com/olmTrjB.png

    Let us see if there is any other conflict.

    Ideally, we would request you to raise a support ticket here https://buildwoofunnels.com/support and that would be the quickest way to get to bottom of this and resolve it.

    Thanks,
    Team WooFunnels

    Thread Starter absatzformat

    (@absatzformat)

    Hi WooFunnels Team,

    thanks for your efforts.

    I see, there must be some kind of interference with other plugins.
    We use many plugins on this particular site, so tracking down the issue would be a tedious task.

    But I managed to get our desired result by using this snippet:

    add_action('plugins_loaded', function () {
        if (class_exists('WFACP_Plugin_Compatibilities')) {
            $wc_germinized = WFACP_Plugin_Compatibilities::get_compatibility_class('wc_germinized');
            if ($wc_germinized) {
                remove_action('wfacp_after_checkout_page_found', [$wc_germinized, 'germanized_terms']);
            }
        }
    });

    Kind regards,
    Johannes

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Checkout checkboxes rendered multiple times’ is closed to new replies.