EmallShop - Responsive Multipurpose WooCommerce Theme

EmallShop - Responsive Multipurpose WooCommerce Theme v2.4.13

No permission to download

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,037
111,710
120

TassieNZ

Premium Uploader and Sometimes Hacker!
Jan 17, 2019
9,017
19,812
120
New Zealand
Nulling has changed. Thanks to @tugster for testing. :) Also, version is 2.2.3 (14-08-2019), not 2.3 as in title.

Replace your verity-purchase.php in emallshop\inc\admin\ with this one.

Or, here is nulled version.
Emallshop – Responsive Multipurpose Woocommerce Theme v2.2.3 NULLED

TassieNZ :)
 
Last edited:
  • Like
Reactions: tanierlyons

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,037
111,710
120

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,037
111,710
120

phineas

Active member
Trusted Uploader
Jul 5, 2018
138
177
43
Hello :)

So, if you just install the theme as it is it will need a valid purchase code, i figured something out to go around this:

Navigate to ' /inc/admin ' and open the file verify-purchase.php
Navigate to the line 153 or search for the folowing code:

PHP:
 if( isset( $data['error'] ) ) {
    echo  '<p class="error">' . esc_html($data['error']) . '</p>';
    return;
 }

Now override with the following code:

PHP:
if( isset( $data['error'] ) ) {
               /*echo  '<p class="error">' . esc_html($data['error']) . '</p>';
                return;*/
                $this->activate( $code, $data );

            $redirect_url = ( class_exists( 'Redux' ) ) ? admin_url( 'themes.php?page=theme_options' ) : admin_url( 'themes.php?page=es-install-plugins' ) ;

             echo  '<p class="updated">'.esc_html__('Theme is activated! You will be redirected in a few seconds','emallshop').'
                <script type="text/javascript"> setTimeout( function() { window.location.href = "' . esc_url($redirect_url) . '"; }, 3000 ); </script>
             </p>';
            }

Now we also need to override the following code in the same file:

PHP:
if( ! $data['verified'] ) {
               echo  '<p class="error">'.esc_html__('Code is not verified!','emallshop').'</p>';
               return;
}

Just override it with:

PHP:
            if( ! $data['verified'] ) {
               /*echo  '<p class="error">'.esc_html__('Code is not verified!','emallshop').'</p>';
                return;*/
                $this->activate( $code, $data );

            $redirect_url = ( class_exists( 'Redux' ) ) ? admin_url( 'themes.php?page=theme_options' ) : admin_url( 'themes.php?page=es-install-plugins' ) ;

             echo  '<p class="updated">'.esc_html__('Theme is activated! You will be redirected in a few seconds','emallshop').'
                <script type="text/javascript"> setTimeout( function() { window.location.href = "' . esc_url($redirect_url) . '"; }, 3000 ); </script>
             </p>';
            }

Now we can activate it with any purchase code :)

Ahoy,
Phineas
 

Masood

Active member
May 30, 2018
267
92
28
Hello :)

So, if you just install the theme as it is it will need a valid purchase code, i figured something out to go around this:

Navigate to ' /inc/admin ' and open the file verify-purchase.php
Navigate to the line 153 or search for the folowing code:

PHP:
 if( isset( $data['error'] ) ) {
    echo  '<p class="error">' . esc_html($data['error']) . '</p>';
    return;
}

Now override with the following code:

PHP:
if( isset( $data['error'] ) ) {
               /*echo  '<p class="error">' . esc_html($data['error']) . '</p>';
                return;*/
                $this->activate( $code, $data );

            $redirect_url = ( class_exists( 'Redux' ) ) ? admin_url( 'themes.php?page=theme_options' ) : admin_url( 'themes.php?page=es-install-plugins' ) ;

             echo  '<p class="updated">'.esc_html__('Theme is activated! You will be redirected in a few seconds','emallshop').'
                <script type="text/javascript"> setTimeout( function() { window.location.href = "' . esc_url($redirect_url) . '"; }, 3000 ); </script>
             </p>';
            }

Now we also need to override the following code in the same file:

PHP:
if( ! $data['verified'] ) {
               echo  '<p class="error">'.esc_html__('Code is not verified!','emallshop').'</p>';
               return;
}

Just override it with:

PHP:
            if( ! $data['verified'] ) {
               /*echo  '<p class="error">'.esc_html__('Code is not verified!','emallshop').'</p>';
                return;*/
                $this->activate( $code, $data );

            $redirect_url = ( class_exists( 'Redux' ) ) ? admin_url( 'themes.php?page=theme_options' ) : admin_url( 'themes.php?page=es-install-plugins' ) ;

             echo  '<p class="updated">'.esc_html__('Theme is activated! You will be redirected in a few seconds','emallshop').'
                <script type="text/javascript"> setTimeout( function() { window.location.href = "' . esc_url($redirect_url) . '"; }, 3000 ); </script>
             </p>';
            }

Now we can activate it with any purchase code :)

Ahoy,
Phineas
We have new nuller here(y)
 

TassieNZ

Premium Uploader and Sometimes Hacker!
Jan 17, 2019
9,017
19,812
120
New Zealand
Hello :)

So, if you just install the theme as it is it will need a valid purchase code, i figured something out to go around this:

Navigate to ' /inc/admin ' and open the file verify-purchase.php
Navigate to the line 153 or search for the folowing code:

PHP:
 if( isset( $data['error'] ) ) {
    echo  '<p class="error">' . esc_html($data['error']) . '</p>';
    return;
}

Now override with the following code:

PHP:
if( isset( $data['error'] ) ) {
               /*echo  '<p class="error">' . esc_html($data['error']) . '</p>';
                return;*/
                $this->activate( $code, $data );

            $redirect_url = ( class_exists( 'Redux' ) ) ? admin_url( 'themes.php?page=theme_options' ) : admin_url( 'themes.php?page=es-install-plugins' ) ;

             echo  '<p class="updated">'.esc_html__('Theme is activated! You will be redirected in a few seconds','emallshop').'
                <script type="text/javascript"> setTimeout( function() { window.location.href = "' . esc_url($redirect_url) . '"; }, 3000 ); </script>
             </p>';
            }

Now we also need to override the following code in the same file:

PHP:
if( ! $data['verified'] ) {
               echo  '<p class="error">'.esc_html__('Code is not verified!','emallshop').'</p>';
               return;
}

Just override it with:

PHP:
            if( ! $data['verified'] ) {
               /*echo  '<p class="error">'.esc_html__('Code is not verified!','emallshop').'</p>';
                return;*/
                $this->activate( $code, $data );

            $redirect_url = ( class_exists( 'Redux' ) ) ? admin_url( 'themes.php?page=theme_options' ) : admin_url( 'themes.php?page=es-install-plugins' ) ;

             echo  '<p class="updated">'.esc_html__('Theme is activated! You will be redirected in a few seconds','emallshop').'
                <script type="text/javascript"> setTimeout( function() { window.location.href = "' . esc_url($redirect_url) . '"; }, 3000 ); </script>
             </p>';
            }

Now we can activate it with any purchase code :)

Ahoy,
Phineas
LOL :)
 

phineas

Active member
Trusted Uploader
Jul 5, 2018
138
177
43
  • Like
Reactions: TassieNZ

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,037
111,710
120
  • Like
Reactions: zara

zara

Active member
Trusted Uploader
Mar 31, 2019
331
166
43
I saw your post but sincerely looked at the version and thought that it would be outdated so I haven't tried it... if the method is the same and it still works that's a cool thing :)

If you think the code I posted is wrong or that something couldn't work because of it let me know

Ahoy,
Phineas
I tried your codes, i did it using dashboard, not FTP or something. but I got some error like

"Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP. "

Can you let me know what is the error here?
 

zara

Active member
Trusted Uploader
Mar 31, 2019
331
166
43
I tried your codes, i did it using dashboard, not FTP or something. but I got some error like

"Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP. "

Can you let me know what is the error here?

@phineas I navigate through the Cpanel and upload the verity-purchase.php file which I have manually nulled. After I enter some random text now all work fine. Thank you so much.

And
Tomz thank you for your service. No one does that kind of help to other than putting virus codes to this file. But your all files very clean! Respect to you and your awesome community! Good Luck!
 

zara

Active member
Trusted Uploader
Mar 31, 2019
331
166
43
Sadly i got error when i try to import demo. I dont know this is related to null code or not Error was

"Fatal error: Uncaught Error: Cannot use object of type WP_Error as array in /home/webpath/wp-content/plugins/pl-emallshop-extensions/inc/importer/importer.php:79 Stack trace: #0 /home/webpath/wp-includes/class-wp-hook.php(286): emallshop_importer('') #1 /home/webpath/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(NULL, Array) #2 /home/webpath/wp-includes/plugin.php(465): WP_Hook->do_action(Array) #3 /home/webpath/wp-admin/admin.php(169): do_action('admin_init') #4 {main} thrown in /home/webpath/wp-content/plugins/pl-emallshop-extensions/inc/importer/importer.php on line 79"

Please anybody can help me?
 

zara

Active member
Trusted Uploader
Mar 31, 2019
331
166
43
Nulling has changed. Thanks to @tugster for testing. :) Also, version is 2.2.3 (14-08-2019), not 2.3 as in title.

Replace your verity-purchase.php in emallshop\inc\admin\ with this one.

Or, here is nulled version.
Emallshop – Responsive Multipurpose Woocommerce Theme v2.2.3 NULLED

TassieNZ :)
Demo import get same error which i got before
 

zara

Active member
Trusted Uploader
Mar 31, 2019
331
166
43
Okay after some investigation I found the problem here, If someone face error with this latest version 2.2.6 that error related to one plugin name as "clever-swatches"

When theme installation it gives some old version which totally not applicable to the theme. But when you download the 2.2.6 it has a plugin folder which has that plugin with exact version theme looking for. Then simply delete the above-mentioned plugin, and upload it from downloaded theme files. The problem will be solved.
 
  • Like
Reactions: tanierlyons

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,037
111,710
120

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