• Hello
    How about the comparability with Wp All Import plugin WooCommerce Addon? After activate the WooCommerce Cloak Affiliate Links i see that the affiliate url that placed on product URL external link is the cloakend url and no the affiliate and the cloaked on the button, and this make an infinity redirect loop.

    How can i fix that? Before about 1 month everything was work ok.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author datafeedr

    (@datafeedrcom)

    Can you test your links when previewing with a default WordPress theme? Could be a theme issue…

    Thread Starter sroskylos

    (@sroskylo1)

    I test it with the same results.

    Plugin Author datafeedr

    (@datafeedrcom)

    Can you post a link to a product page on your site of a product imported by WpAI?

    Thread Starter sroskylos

    (@sroskylo1)

    I send an email to datafeedr.com

    Plugin Author datafeedr

    (@datafeedrcom)

    I’ve replied with some code you can add to your custom plugin:

    function mycode_disable_in_admin_requests($valid_classes)
    {
        if (is_admin()) {
            return [];
        }
    
        return $valid_classes;
    }
    
    add_filter('wccal_valid_product_classes', 'mycode_disable_in_admin_requests', 20, 1);
    
    
    • This reply was modified 6 years, 1 month ago by datafeedr.
    Thread Starter sroskylos

    (@sroskylo1)

    It not works. I try it.

    Plugin Author datafeedr

    (@datafeedrcom)

    That’s strange… That should essentially disable our plugin when logged into the WordPress Admin Area. I’m really not sure what else to try.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Redirect Loop’ is closed to new replies.