WordPress WhatsApp Support

WordPress WhatsApp Support v2.5.1

No permission to download

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,191
111,758
120

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,191
111,758
120
Tomz 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...
 

TassieNZ

Premium Uploader and Sometimes Hacker!
Jan 17, 2019
9,017
19,812
120
New Zealand
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: tanierlyons

dolob

Member
Aug 27, 2018
93
56
18
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: tanierlyons

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,191
111,758
120

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,191
111,758
120
Tomz 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://babiato.tech/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...
 

leosilva

New member
Oct 5, 2019
7
0
1
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
 

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,191
111,758
120
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
 

shadowgrifion

Member
Sep 15, 2019
98
44
18
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.
 

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,191
111,758
120
  • Like
Reactions: shadowgrifion

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu