• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

AffiliateWP - Affiliate Plugin for WordPress

AffiliateWP - Affiliate Plugin for WordPress v2.24.3

No permission to download

Affiliate WP v2.23.2 NULLED​

DRM FIX!
Input any license code to activate

@Babak please add this code to remove DRM notice:
PHP:
add_filter('get_current_state', function(){
    return 'valid';
},10,0);

add_filter('affwp_can_access_pro_features', function(){
    return true;
},10,0);
Any tip on how to make it a snippet?
 
I wanna ask for help. AffiliateWP + Affiliate Portal Addon has the good layout of Menu Page. I also install Mulit Level Affiliate [MLA] to show the network chart of each Affiliate Member in their own Affiliate Area. But MLA is not compatible to Affiliate Portal. No Menu for MLA is shown in Affiliate Area. I have to disable Affiliate Portal to let my Affiliate members see their own MLA network chart.

Would any person know any code or method to keep using Affiliate Portal at the same time can find out the way to show MLA network chart in each Affiliate member's Affiliate area?

Thank you in advance!
 
  • Like
Reactions: scathscath
I wanna ask for help. AffiliateWP + Affiliate Portal Addon has the good layout of Menu Page. I also install Mulit Level Affiliate [MLA] to show the network chart of each Affiliate Member in their own Affiliate Area. But MLA is not compatible to Affiliate Portal. No Menu for MLA is shown in Affiliate Area. I have to disable Affiliate Portal to let my Affiliate members see their own MLA network chart.

Would any person know any code or method to keep using Affiliate Portal at the same time can find out the way to show MLA network chart in each Affiliate member's Affiliate area?

Thank you in advance!
Yes, AffiliateWP have some bugs, that's why now I use SolidAffiliate.

this code not working with me :(
You need the complete codes:
PHP:
add_filter('get_current_state', function(){
    return 'valid';
},10,0);

add_filter('affwp_can_access_pro_features', function(){
    return true;
},10,0);

add_filter('pre_http_request', function($preempt, $parsed_args, $url) {
    if ($parsed_args['method'] === 'POST' && strpos($url, 'https://affiliatewp.com') !== false) {
        $response_array = [
            "success" => true,
            "license" => "valid",
            "item_id" => 17,
            "item_name" => "AffiliateWP",
            "license_limit" => 100,
            "site_count" => 1,
            "expires" => 2524588200,
            "activations_let" => 99,
            "payment_id" => 123321,
            "customer_name" => "GPL",
            "customer_email" => "[email protected]",
            "price_id" => "2"
        ];

        $response_body = json_encode($response_array);

        return [
            'headers' => [],
            'body' => $response_body,
            'response' => [
                'code' => 200,
                'message' => 'OK'
            ],
        ];
    }
    return $preempt;
}, 10, 3);
 
Yes, AffiliateWP have some bugs, that's why now I use SolidAffiliate.
Thanks for your reply. Do SolidAffiliate have Network Chart for each Affiliate to view their updated subaffiliates?

Or I should use SliceWP ... is it better than AffiliateWP?
1711634111935.png
 
Thanks for your reply. Do SolidAffiliate have Network Chart for each Affiliate to view their updated subaffiliates?

Or I should use SliceWP ... is it better than AffiliateWP?
I am not sure. My only purpose for using the affiliate system is to use Coupon Checkout. So, I haven't tested the other features. And I've never tried SliceWP either.
You can try installing it on localhost or on a staging site first to test the features.

EDIT:
is this what you want?

1711637943065.png
 
A
Thanks for your reply. Do SolidAffiliate have Network Chart for each Affiliate to view their updated subaffiliates?

Or I should use SliceWP ... is it better than AffiliateWP?
1711634111935.png
AffiliiateWP has way more. Groups, Sub-affiliate addon, and way more. I'd just try that. More support, more extensions.

UPDATE 4/1/24
I just did a full comparison and testd both. AffiliateWP is #1 for a reason. Seriously, didn't know it did all the things I needed it for, so I switched from SliceWP.
 
Last edited:
Yes, AffiliateWP have some bugs, that's why now I use SolidAffiliate.


You need the complete codes:
PHP:
add_filter('get_current_state', function(){
    return 'valid';
},10,0);

add_filter('affwp_can_access_pro_features', function(){
    return true;
},10,0);

add_filter('pre_http_request', function($preempt, $parsed_args, $url) {
    if ($parsed_args['method'] === 'POST' && strpos($url, 'https://affiliatewp.com') !== false) {
        $response_array = [
            "success" => true,
            "license" => "valid",
            "item_id" => 17,
            "item_name" => "AffiliateWP",
            "license_limit" => 100,
            "site_count" => 1,
            "expires" => 2524588200,
            "activations_let" => 99,
            "payment_id" => 123321,
            "customer_name" => "GPL",
            "customer_email" => "[email protected]",
            "price_id" => "2"
        ];

        $response_body = json_encode($response_array);

        return [
            'headers' => [],
            'body' => $response_body,
            'response' => [
                'code' => 200,
                'message' => 'OK'
            ],
        ];
    }
    return $preempt;
}, 10, 3);


I managed to activate mine. But whenever I turn on a add-on.

When I save or refresh, it reverts back to "Install Add-on"

Does anyone have the same error?
 
I managed to activate mine. But whenever I turn on a add-on.

When I save or refresh, it reverts back to "Install Add-on"

Does anyone have the same error?
Yes, i found that we need to install the add-on separately as plugin then it will be active.
thats why i am asking if anyone has the latest AffiliateWP Multi Level Affiliates add-on
 
  • Like
Reactions: Gaeius
Yes, i found that we need to install the add-on separately as plugin then it will be active.
thats why i am asking if anyone has the latest AffiliateWP Multi Level Affiliates add-on

Oh I see. Sorry, I don't have it. But do you have the other add-ons?
 
It's not PRO!
1712770279108.png

Add this code in your theme's function.php or use a code snippet plugin


PHP:
PHP:
add_filter('get_current_state', function(){
    return 'valid';
},10,0);

add_filter('affwp_can_access_pro_features', function(){
    return true;
},10,0);

add_filter('pre_http_request', function($preempt, $parsed_args, $url) {
    if ($parsed_args['method'] === 'POST' && strpos($url, 'https://affiliatewp.com') !== false) {
        $response_array = [
            "success" => true,
            "license" => "valid",
            "item_id" => 17,
            "item_name" => "AffiliateWP",
            "license_limit" => 100,
            "site_count" => 1,
            "expires" => 2524588200,
            "activations_let" => 99,
            "payment_id" => 123321,
            "customer_name" => "GPL",
            "customer_email" => "[email protected]",
            "price_id" => "2"
        ];

        $response_body = json_encode($response_array);

        return [
            'headers' => [],
            'body' => $response_body,
            'response' => [
                'code' => 200,
                'message' => 'OK'
            ],
        ];
    }
    return $preempt;
}, 10, 3);
 
Babak updated AffiliateWP - Affiliate Plugin for WordPress with a new update entry:

AffiliateWP v2.24.1

Download AffiliateWP v2.24.1 WordPress Plugin Nulled Free
v2.24.1, April 11, 2024

  • Improved: Various security improvements in the admin
  • Improved: Support for newly reorganized settings for Direct Link Tracking and Recurring Referrals
  • Improved: Updated Brazilian Portuguese (pt-BR) translations
  • Improved: AffiliateWP logs are now stored in a more secure location
  • Fixed: Error when constructing a hyperlink for the Affiliate Terms of Use page on sites with URLs...

Read the rest of this update entry...
 
AffiliateWP – Direct Link Tracking v1.3.2
AffiliateWP – Recurring Referrals v1.9.2
 

Attachments

  • affiliatewp-direct-link-tracking_1.3.2.zip
    61.5 KB · Views: 28
  • affiliate-wp-recurring-referrals_1.9.2.zip
    107.7 KB · Views: 26
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock