• 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"

WordPress WhatsApp Support

WordPress WhatsApp Support v2.5.0

No permission to download
Babak updated WordPress WhatsApp Support with a new update entry:

WordPress WhatsApp Support v1.7

Download WordPress WhatsApp Support v1.7 Nulled CodeCanyon Free
VERSION 1.7 – JUN 17, 2019

  • Added: Brand new layout 7 with WhatsApp number field.
  • Added: More control on Facebook Pixel and Google Analytics.
  • Completely redesigned admin settings.
  • Performance and security improvements.
  • Added: Validation error animations.
  • Improved built-in analytics.
  • Added: Delete single or complete analytics.
  • Added: Admin option to move click button horizontal and vertical...

Read the rest of this update entry...
 
Hmmm! IGNORE THIS BELOW! Activation changed. I'll look at it when I can. :)

In the file wordpress-whatsapp-support.php which is in the root of the plugin folder, after line 73 (approx) which is:
Code:
$wws_main->init();
Add this line:
Code:
update_option('sk_wws_license_key', 'place_ANY_license_key_here');

Replace place_ANY_license_key_here with ANY key!

Should still be working. Was fine with last version, but no time to check. :)
 
Last edited:
  • Like
Reactions: Babak
under wordpress-whatsapp-support/includes/classes/admin there is class-wws-plugin-activation.php
in function plugin_activation() change everything to
PHP:
       if ( ! isset( $_POST['wws_plugin_activation_submit'] ) ) {
            return true;
        }

        $license_key = trim( $_POST['purchase_code'] );

        $params = array(
            'body' => array(
                'license_user'  => site_url(),
                'license_key'   => $license_key,
            ),
        );

        // Make the POST request
        $request = wp_remote_post('https://WRITE-ANY-THING', $params);

        // Check if response is valid
        if ( ! is_wp_error( $request ) || wp_remote_retrieve_response_code( $request ) === 200 ) {

            $this->response = json_decode( $request['body'] );

            switch ( $this->response->code ) {

                case '100':
                       
                    update_option('sk_wws_license_key', $license_key);
                    wp_redirect( $this->plugin_admin_url );

                    break;

                case '200':
                   
                    update_option('sk_wws_license_key', $license_key);
                    wp_redirect( $this->plugin_admin_url );

                    break;

                case '210':
                    update_option('sk_wws_license_key', $license_key);
                    wp_redirect( $this->plugin_admin_url );
                    break;
               
                default:
                   
                    update_option('sk_wws_license_key', $license_key);
                    wp_redirect( $this->plugin_admin_url );

                    break;

            }
           
           
        } else {

                    update_option('sk_wws_license_key', $license_key);
                    wp_redirect( $this->plugin_admin_url );

        }

and change public function plugin_deactivation() to
PHP:
        if ( ! is_admin() ) {
            return;
        }

        if ( ! isset( $_GET['wws_plugin_deactivation'] ) ) {
            return;
        }

                    update_option('sk_wws_license_key', $license_key);
                    wp_redirect( $this->plugin_admin_url );

thats all to null (i tried)
Hmmm! IGNORE THIS BELOW! Activation changed. I'll look at it when I can. :)

In the file wordpress-whatsapp-support.php which is in the root of the plugin folder, after line 73 (approx) which is:
Code:
$wws_main->init();
Add this line:
Code:
update_option('sk_wws_license_key', 'place_ANY_license_key_here');

Replace place_ANY_license_key_here with ANY key!

Should still be working. Was fine with last version, but no time to check. :)
 
  • Like
Reactions: Babak
Babak updated WordPress WhatsApp Support with a new update entry:

WordPress WhatsApp Support v1.8.2

Download WordPress WhatsApp Support v1.8.2 Nulled CodeCanyon Free
For Nulling CHeck THis Post:
https://babia.to/threads/wordpress-whatsapp-support.1992/page-2#post-53394
VERSION 1.8.2 – OCT 9, 2019

  • Added: Number validation on mobile number fields.
  • Added: More details to the layouts.
  • Fixed: Group invitation ID issue.
  • Fixed: Warning: count() Parameter must be an array or object that implements Countable…

Read the rest of this update entry...
 
can you explain more simp
under wordpress-whatsapp-support/includes/classes/admin there is class-wws-plugin-activation.php
in function plugin_activation() change everything to
PHP:
       if ( ! isset( $_POST['wws_plugin_activation_submit'] ) ) {
            return true;
        }

        $license_key = trim( $_POST['purchase_code'] );

        $params = array(
            'body' => array(
                'license_user'  => site_url(),
                'license_key'   => $license_key,
            ),
        );

        // Make the POST request
        $request = wp_remote_post('https://WRITE-ANY-THING', $params);

        // Check if response is valid
        if ( ! is_wp_error( $request ) || wp_remote_retrieve_response_code( $request ) === 200 ) {

            $this->response = json_decode( $request['body'] );

            switch ( $this->response->code ) {

                case '100':
                      
                    update_option('sk_wws_license_key', $license_key);
                    wp_redirect( $this->plugin_admin_url );

                    break;

                case '200':
                  
                    update_option('sk_wws_license_key', $license_key);
                    wp_redirect( $this->plugin_admin_url );

                    break;

                case '210':
                    update_option('sk_wws_license_key', $license_key);
                    wp_redirect( $this->plugin_admin_url );
                    break;
              
                default:
                  
                    update_option('sk_wws_license_key', $license_key);
                    wp_redirect( $this->plugin_admin_url );

                    break;

            }
          
          
        } else {

                    update_option('sk_wws_license_key', $license_key);
                    wp_redirect( $this->plugin_admin_url );

        }

and change public function plugin_deactivation() to
PHP:
        if ( ! is_admin() ) {
            return;
        }

        if ( ! isset( $_GET['wws_plugin_deactivation'] ) ) {
            return;
        }

                    update_option('sk_wws_license_key', $license_key);
                    wp_redirect( $this->plugin_admin_url );

thats all to null (i tried)
under wordpress-whatsapp-support/includes/classes/admin there is class-wws-plugin-activation.php
in function plugin_activation() change everything to
PHP:
       if ( ! isset( $_POST['wws_plugin_activation_submit'] ) ) {
            return true;
        }

        $license_key = trim( $_POST['purchase_code'] );

        $params = array(
            'body' => array(
                'license_user'  => site_url(),
                'license_key'   => $license_key,
            ),
        );

        // Make the POST request
        $request = wp_remote_post('https://WRITE-ANY-THING', $params);

        // Check if response is valid
        if ( ! is_wp_error( $request ) || wp_remote_retrieve_response_code( $request ) === 200 ) {

            $this->response = json_decode( $request['body'] );

            switch ( $this->response->code ) {

                case '100':
                      
                    update_option('sk_wws_license_key', $license_key);
                    wp_redirect( $this->plugin_admin_url );

                    break;

                case '200':
                  
                    update_option('sk_wws_license_key', $license_key);
                    wp_redirect( $this->plugin_admin_url );

                    break;

                case '210':
                    update_option('sk_wws_license_key', $license_key);
                    wp_redirect( $this->plugin_admin_url );
                    break;
              
                default:
                  
                    update_option('sk_wws_license_key', $license_key);
                    wp_redirect( $this->plugin_admin_url );

                    break;

            }
          
          
        } else {

                    update_option('sk_wws_license_key', $license_key);
                    wp_redirect( $this->plugin_admin_url );

        }

and change public function plugin_deactivation() to
PHP:
        if ( ! is_admin() ) {
            return;
        }

        if ( ! isset( $_GET['wws_plugin_deactivation'] ) ) {
            return;
        }

                    update_option('sk_wws_license_key', $license_key);
                    wp_redirect( $this->plugin_admin_url );

thats all to null (i tried)



-------------

Can you make modified files available to activate the app? I don't understand anything about programming 😅😅

Thanks
 
can you explain more simp





-------------

Can you make modified files available to activate the app? I don't understand anything about programming 😅😅

Thanks
just edit codes and save it
 
its relased new version pls update :)

VERSION 1.8.4 – OCT 27, 2019
  • Added: Custom actions and hooks to make the plugin more customizable.
  • Added: Missing Custom CSS save option and escape outputs.
 
  • Like
Reactions: shadowgrifion
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