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

Uncode - Best Creative Multiuse & WordPress WooCommerce Theme

Uncode - Creative Multiuse & WordPress WooCommerce Theme v2.8.14 Nulled

No permission to download
lynx updated Uncode - Best Creative Multiuse & WordPress WooCommerce Theme with a new update entry:

Uncode v2.7.12 Untouched

FIX:
- Text Marquee and Sticky Scroll on Frontend Editor
- Product Page module
- Featured Image replacemente
- Lateral Menu active on load and mouse hover state
- Revolution Slider change Skin event
- Gutenberg editor Meta Boxes style
- Sidecart on mobile
- Countdown markup

UPDATES:
- Uncode Core 2.7.12
- Uncode WPBakery Page Builder 6.13.0 (XSS vulnerability)
- Uncode Privacy 2.2.3
- Revolution Slider 6.6.14
- LayerSlider 7.7.7

Read the rest of this update entry...
 
  • Love
Reactions: iBotWeb
lynx updated Uncode - Best Creative Multiuse & WordPress WooCommerce Theme with a new update entry:

Uncode v2.7.12 Nulled

FIX:
- Text Marquee and Sticky Scroll on Frontend Editor
- Product Page module
- Featured Image replacemente
- Lateral Menu active on load and mouse hover state
- Revolution Slider change Skin event
- Gutenberg editor Meta Boxes style
- Sidecart on mobile
- Countdown markup

UPDATES:
- Uncode Core 2.7.12
- Uncode WPBakery Page Builder 6.13.0 (XSS vulnerability)
- Uncode Privacy 2.2.3
- Revolution Slider 6.6.14
- LayerSlider 7.7.7

Read the rest of this update entry...
 
  • Love
Reactions: iBotWeb
the uncode-core nulled plugin has an issue that prevents WPBakery to load in backend. can someone please check?

EDIT: actually i just diffed them and theyre the same. theres no nulling done compared to untouched version. and - WPBakery Page Builder Clipboard 5.0.4 is missing from zip.

Could you please repack the nulled version with uncode-core nulled and the clipboard plugin please?

@lynx
 
Last edited:
  • Like
Reactions: RuslanCak
Hello @lynx
Uncode Privacy, Uncode WPBakery Page Builder, WPBakery Page Builder Clipboard update are missing.
Thanks

Hello @guarda diretta and @Breadwinner
Before install or update the theme, for nulled process, add this code at the first line in functions.php file of the theme.

PHP:
update_option( 'envato_purchase_code_13373220', 'activated' );
/* Added Jun 17, 2023 for v2.8.0 */
add_action('login_enqueue_scripts', 'hide_uncode_admin_notices');
add_action('admin_enqueue_scripts', 'hide_uncode_admin_notices');
function hide_uncode_admin_notices() {
    echo '<style>div.notice.error.illegal-purchase-code { display: none; }</style>';
}

replace these lines in the uncode-core/includes/core-functions.php and core/inc/api/api-functions.php

PHP:
/**
 * Check validity of purchase code.
 */

function uncode_core_check_valid_purchase_code() {
    $is_valid      = true;
    $purchase_code = trim( uncode_get_purchase_code() );
    if ( $purchase_code && ! preg_match("/^([a-f0-9]{8})-(([a-f0-9]{4})-){3}([a-f0-9]{12})$/i", $purchase_code ) ) {
        $is_valid = false;
    }

    return $is_valid;
}

with

PHP:
/**
 * Check validity of purchase code.
 */
function uncode_core_check_valid_purchase_code() {
    /* $purchase_code = trim( get_option( 'envato_purchase_code_13373220', false ) );
    if ( $purchase_code && ! preg_match("/^([a-f0-9]{8})-(([a-f0-9]{4})-){3}([a-f0-9]{12})$/i", $purchase_code ) ) {
        $is_valid = false;
    }
    return $is_valid; */
    return true;

}

and in the core/inc/helpers.php /* Added 08/29/2023 */

PHP:
function uncode_fo8l_op() {
    $is_valid      = true;
    $purchase_code = trim( uncode_get_purchase_code() );

    if ( $purchase_code && ! preg_match("/^([a-f0-9]{8})-(([a-f0-9]{4})-){3}([a-f0-9]{12})$/i", $purchase_code ) ) {
        $is_valid = false;
    }

    $purchase_code_chars = str_replace('-', '', $purchase_code );

    if ( strlen( $purchase_code_chars ) > 0 && isset( $purchase_code_chars[0] ) ) {
        $first_char          = $purchase_code_chars[0];
        $has_same_chars      = true;

        for ( $i = 1; $i < strlen( $purchase_code_chars ); $i++ ) {
            if ( $purchase_code_chars[$i] != $first_char ) {
                $has_same_chars = false;
            }
        }

        if ( $has_same_chars ) {
            $is_valid = false;
        }
    }


    return $is_valid;
}

with

PHP:
function uncode_fo8l_op() {
    /* $is_valid      = true;
    $purchase_code = trim( uncode_get_purchase_code() );

    if ( $purchase_code && ! preg_match("/^([a-f0-9]{8})-(([a-f0-9]{4})-){3}([a-f0-9]{12})$/i", $purchase_code ) ) {
        $is_valid = false;
    }

    $purchase_code_chars = str_replace('-', '', $purchase_code );

    if ( strlen( $purchase_code_chars ) > 0 && isset( $purchase_code_chars[0] ) ) {
        $first_char          = $purchase_code_chars[0];
        $has_same_chars      = true;

        for ( $i = 1; $i < strlen( $purchase_code_chars ); $i++ ) {
            if ( $purchase_code_chars[$i] != $first_char ) {
                $has_same_chars = false;
            }
        }

        if ( $has_same_chars ) {
            $is_valid = false;
        }
    }

    return $is_valid;*/
    return true;
}

For all demo code, all shortcode are present into :

wp-content/plugins/uncode-core/includes/one-click-demo/demo-files/content.xml

Just open file with Notepad++ and :

1. Find title of section demo (CTRL + F)
2. Copy the code inside <![CDATA[ ... ]]
3. Paste the code into the wordpress text editor (after you can use Uncode JS Composer Editor for editing)
4. Save

Enjoy

Updated : 08/29/2023 (work for v2.8.x)
 
Last edited:
Hello @lynx
Uncode Privacy, Uncode WPBakery Page Builder, WPBakery Page Builder Clipboard update are missing.
Thanks



Hello @guarda diretta and @Breadwinner
Before install or update the theme, for nulled process, add this code at the first line in functions.php file of the theme.

and replace these lines in the uncode-core/includes/core-functions.php.
PHP:
/**
 * Check validity of purchase code.
 */
function uncode_core_check_valid_purchase_code() {
    $purchase_code = trim( get_option( 'envato_purchase_code_13373220', false ) );

    if ( $purchase_code && ! preg_match("/^([a-f0-9]{8})-(([a-f0-9]{4})-){3}([a-f0-9]{12})$/i", $purchase_code ) ) {
        $is_valid = false;
    }

    return $is_valid;
}
with
PHP:
/**
 * Check validity of purchase code.
 */
function uncode_core_check_valid_purchase_code() {
    /* $purchase_code = trim( get_option( 'envato_purchase_code_13373220', false ) );

    if ( $purchase_code && ! preg_match("/^([a-f0-9]{8})-(([a-f0-9]{4})-){3}([a-f0-9]{12})$/i", $purchase_code ) ) {
        $is_valid = false;
    }

    return $is_valid; */
    return true;
}

For all demo code, all shortcode are present into :

Just open file with Notepad++ and :
1. Find title of section demo (CTRL + F)
2. Copy the code inside <![CDATA[ ... ]]
3. Paste the code into the wordpress text editor (after you can use Uncode JS Composer Editor for editing)
4. Save
Enjoy :)
thank you
 
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