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

Impreza - WordPress Website and WooCommerce Builder By UpSolution

Impreza - WordPress Website and WooCommerce Builder By UpSolution v8.22

No permission to download
Impreza – Multi-Purpose WordPress Theme v7.0.1 NULLED (core update only thanks to @Region25 )

TassieNZ :)
 
  • Like
Reactions: Babak and Region25
Impreza – Multi-Purpose WordPress Theme 7.0.3 untouched
Version 7.0.3 — December 25, 2019
  • IMPROVED Grid Layout CSS output – now all Grids with the same Grid Layout are have only one <style> block. This improves loading speed of pages with many Grids
  • FIXED appearance of Text element in header, because "Allow move content to the next line" setting didn't work
  • FIXED issue when "background-position" and "background-size" in Design options are override in Columns
  • FIXED issue when "padding-left" and "padding-right" in Design options are override in Fullwidth Row
  • FIXED extra padding in Vertical Tabs located in Fullwidth Row
  • FIXED rare issue with Page Block with sidebars in Menu
  • FIXED incorrect work of Demo Import in some cases
  • FIXED bug with Page Scroller in Internet Explorer 11
 
  • Like
Reactions: carmeli and Babak
Babak updated Impreza – Multi-Purpose WordPress Theme with a new update entry:

Impreza v7.0.3 Nulled

Download Impreza v7.0.3 – Multi-Purpose WordPress Theme Nulled Free
Version 7.0.3 — December 25, 2019 Thanks To @Region25

  • IMPROVED Grid Layout CSS output – now all Grids with the same Grid Layout are have only one <style> block. This improves loading speed of pages with many Grids
  • FIXED appearance of Text element in header, because "Allow move content to the next line" setting didn't work
  • FIXED issue when "background-position"...

Read the rest of this update entry...
 
Fully NULLED version above, but here is how to null v7.0.1

Firstly, you need to comment out a block of code in:
Impreza\common\admin\functions\about.php (from line 38 to 79 approximately).

The easiest way is to use ....
PHP:
/*
code
*/

Therefore, find and comment out ...
PHP:
    if ( ! empty( $_GET['activation_action'] ) ) {
        if ( $_GET['activation_action'] == 'activate' AND ! empty( $_GET['secret'] ) ) {
            $url = $help_portal_api_url . '?secret=' . $_GET['secret'] . '&domain=' . $domain . '&version=' . US_THEMEVERSION;

            $response = (array) us_api_remote_request( $url );
            if ( ! empty( $response ) AND isset( $response['status'] ) AND $response['status'] == 1 ) {
                if ( $response['site_type'] == 'dev' ) {
                    update_option( 'us_license_dev_activated', 1 );
                    delete_option( 'us_license_activated' );
                } else {
                    update_option( 'us_license_activated', 1 );
                    delete_option( 'us_license_dev_activated' );
                }

                update_option( 'us_license_secret', $_GET['secret'] );
                delete_transient( 'us_update_addons_data_' . US_THEMENAME );
            }
        }
    } elseif ( get_option( 'us_license_activated', 0 ) OR get_option( 'us_license_dev_activated', 0 ) ) {
        $url = $help_portal_api_url . '?secret=' . get_option( 'us_license_secret' ) . '&domain=' . $domain . '&version=' . US_THEMEVERSION;
        $response = wp_remote_get( $url );

        if ( ! is_wp_error( $response ) ) {
            if ( $response['body'] ) {
                try {
                    $response_body = (array) json_decode( $response['body'] );
                } catch (Exception $e) {
                    $response_body = array();
                }
                if ( isset( $response_body['status'] ) AND $response_body['status'] !== 1 ) {
                    delete_option( 'us_license_dev_activated' );
                    delete_option( 'us_license_activated' );
                    delete_option( 'us_license_secret' );
                    delete_transient( 'us_update_addons_data_' . US_THEMENAME );
                }
            }
        }
    }
    if ( get_option( 'us_license_dev_activated', 0 ) AND function_exists( 'us_update_option' ) ) {
        us_update_option( 'maintenance_mode', 1 );
    }
    ?>

So it looks like ...
PHP:
/*
    if ( ! empty( $_GET['activation_action'] ) ) {
        if ( $_GET['activation_action'] == 'activate' AND ! empty( $_GET['secret'] ) ) {
            $url = $help_portal_api_url . '?secret=' . $_GET['secret'] . '&domain=' . $domain . '&version=' . US_THEMEVERSION;

            $response = (array) us_api_remote_request( $url );
            if ( ! empty( $response ) AND isset( $response['status'] ) AND $response['status'] == 1 ) {
                if ( $response['site_type'] == 'dev' ) {
                    update_option( 'us_license_dev_activated', 1 );
                    delete_option( 'us_license_activated' );
                } else {
                    update_option( 'us_license_activated', 1 );
                    delete_option( 'us_license_dev_activated' );
                }

                update_option( 'us_license_secret', $_GET['secret'] );
                delete_transient( 'us_update_addons_data_' . US_THEMENAME );
            }
        }
    } elseif ( get_option( 'us_license_activated', 0 ) OR get_option( 'us_license_dev_activated', 0 ) ) {
        $url = $help_portal_api_url . '?secret=' . get_option( 'us_license_secret' ) . '&domain=' . $domain . '&version=' . US_THEMEVERSION;
        $response = wp_remote_get( $url );

        if ( ! is_wp_error( $response ) ) {
            if ( $response['body'] ) {
                try {
                    $response_body = (array) json_decode( $response['body'] );
                } catch (Exception $e) {
                    $response_body = array();
                }
                if ( isset( $response_body['status'] ) AND $response_body['status'] !== 1 ) {
                    delete_option( 'us_license_dev_activated' );
                    delete_option( 'us_license_activated' );
                    delete_option( 'us_license_secret' );
                    delete_transient( 'us_update_addons_data_' . US_THEMENAME );
                }
            }
        }
    }
    if ( get_option( 'us_license_dev_activated', 0 ) AND function_exists( 'us_update_option' ) ) {
        us_update_option( 'maintenance_mode', 1 );
    }
    ?>
*/

Now open ...
Impreza\functions.php
Under line 1, which is ...
PHP:
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' );

Add ...
PHP:
update_option( 'us_license_activated', 1 );

So it will look something like ...
PHP:
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' );

update_option( 'us_license_activated', 1 );

/**
* Theme functions and definitions
*/

That's it. Easy!

Long may it last. :)
With Impreza 7.0.3 OK Thanks¡
 
  • Like
Reactions: TassieNZ and jimmy
Fully NULLED version above, but here is how to null v7.0.1

Firstly, you need to comment out a block of code in:
Impreza\common\admin\functions\about.php (from line 38 to 79 approximately).

The easiest way is to use ....
PHP:
/*
code
*/

Therefore, find and comment out ...
PHP:
    if ( ! empty( $_GET['activation_action'] ) ) {
        if ( $_GET['activation_action'] == 'activate' AND ! empty( $_GET['secret'] ) ) {
            $url = $help_portal_api_url . '?secret=' . $_GET['secret'] . '&domain=' . $domain . '&version=' . US_THEMEVERSION;

            $response = (array) us_api_remote_request( $url );
            if ( ! empty( $response ) AND isset( $response['status'] ) AND $response['status'] == 1 ) {
                if ( $response['site_type'] == 'dev' ) {
                    update_option( 'us_license_dev_activated', 1 );
                    delete_option( 'us_license_activated' );
                } else {
                    update_option( 'us_license_activated', 1 );
                    delete_option( 'us_license_dev_activated' );
                }

                update_option( 'us_license_secret', $_GET['secret'] );
                delete_transient( 'us_update_addons_data_' . US_THEMENAME );
            }
        }
    } elseif ( get_option( 'us_license_activated', 0 ) OR get_option( 'us_license_dev_activated', 0 ) ) {
        $url = $help_portal_api_url . '?secret=' . get_option( 'us_license_secret' ) . '&domain=' . $domain . '&version=' . US_THEMEVERSION;
        $response = wp_remote_get( $url );

        if ( ! is_wp_error( $response ) ) {
            if ( $response['body'] ) {
                try {
                    $response_body = (array) json_decode( $response['body'] );
                } catch (Exception $e) {
                    $response_body = array();
                }
                if ( isset( $response_body['status'] ) AND $response_body['status'] !== 1 ) {
                    delete_option( 'us_license_dev_activated' );
                    delete_option( 'us_license_activated' );
                    delete_option( 'us_license_secret' );
                    delete_transient( 'us_update_addons_data_' . US_THEMENAME );
                }
            }
        }
    }
    if ( get_option( 'us_license_dev_activated', 0 ) AND function_exists( 'us_update_option' ) ) {
        us_update_option( 'maintenance_mode', 1 );
    }
    ?>

So it looks like ...
PHP:
/*
    if ( ! empty( $_GET['activation_action'] ) ) {
        if ( $_GET['activation_action'] == 'activate' AND ! empty( $_GET['secret'] ) ) {
            $url = $help_portal_api_url . '?secret=' . $_GET['secret'] . '&domain=' . $domain . '&version=' . US_THEMEVERSION;

            $response = (array) us_api_remote_request( $url );
            if ( ! empty( $response ) AND isset( $response['status'] ) AND $response['status'] == 1 ) {
                if ( $response['site_type'] == 'dev' ) {
                    update_option( 'us_license_dev_activated', 1 );
                    delete_option( 'us_license_activated' );
                } else {
                    update_option( 'us_license_activated', 1 );
                    delete_option( 'us_license_dev_activated' );
                }

                update_option( 'us_license_secret', $_GET['secret'] );
                delete_transient( 'us_update_addons_data_' . US_THEMENAME );
            }
        }
    } elseif ( get_option( 'us_license_activated', 0 ) OR get_option( 'us_license_dev_activated', 0 ) ) {
        $url = $help_portal_api_url . '?secret=' . get_option( 'us_license_secret' ) . '&domain=' . $domain . '&version=' . US_THEMEVERSION;
        $response = wp_remote_get( $url );

        if ( ! is_wp_error( $response ) ) {
            if ( $response['body'] ) {
                try {
                    $response_body = (array) json_decode( $response['body'] );
                } catch (Exception $e) {
                    $response_body = array();
                }
                if ( isset( $response_body['status'] ) AND $response_body['status'] !== 1 ) {
                    delete_option( 'us_license_dev_activated' );
                    delete_option( 'us_license_activated' );
                    delete_option( 'us_license_secret' );
                    delete_transient( 'us_update_addons_data_' . US_THEMENAME );
                }
            }
        }
    }
    if ( get_option( 'us_license_dev_activated', 0 ) AND function_exists( 'us_update_option' ) ) {
        us_update_option( 'maintenance_mode', 1 );
    }
    ?>
*/

Now open ...
Impreza\functions.php
Under line 1, which is ...
PHP:
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' );

Add ...
PHP:
update_option( 'us_license_activated', 1 );

So it will look something like ...
PHP:
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' );

update_option( 'us_license_activated', 1 );

/**
* Theme functions and definitions
*/

That's it. Easy!

Long may it last. :)

thank you very much @TassieNZ :)🙏
 
  • Like
  • Love
Reactions: jimmy and m0jtaba
Hello Babak!
I downloaded v7.1 and i did not found us-core plugin inside?!
They don't use it anymore?
Thanks! :)(y)
 
  • Like
  • Love
Reactions: m0jtaba and jimmy
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