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

WooCommerce PDF Vouchers - Ultimate Gift Cards WordPress Plugin

WooCommerce PDF Vouchers - Ultimate Gift Cards WordPress Plugin v4.7.4

No permission to download
Hi guys,
I've play arround and get it to work :)

go in Includes folder and open file woo-vou-misc-functions.php
at the bottom you will find license check...

I don't know if this is correct, but after trying, plugin at me work :)

Replace this code:

PHP:
/**
 * WooCommerce - PDF Vouchers license check
 *
 * @package WooCommerce - PDF Vouchers
 * @since 3.7.0
 */
function woo_vou_is_license_activated() {
    $status = false;
    $activated = get_option( 'woo_vou_activated' );
    if( $activated ) {
        $activated = base64_decode( $activated );
        $data = explode( '%', $activated );
        $license_code = get_option( 'woo_vou_activation_code' );
        $email = get_option( 'woo_vou_email_address' );
        if( ! empty( $data ) && $data[0] === $license_code && $data[1] === $email ) {
            $status = true;
        }
    }
    return $status;
}

with this:

PHP:
/**
 * WooCommerce - PDF Vouchers license check
 *
 * @package WooCommerce - PDF Vouchers
 * @since 3.7.0
 */
function woo_vou_is_license_activated() {
    $status = true;
    $activated = get_option( 'woo_vou_activated' );
    if( $activated ) {
        $activated = base64_decode( $activated );
        $data = explode( '%', $activated );
        $license_code = get_option( 'woo_vou_activation_code' );
        $email = get_option( 'woo_vou_email_address' );
        if( ! empty( $data ) && $data[0] === $license_code && $data[1] === $email ) {
            $status = true;
        }
    }
    return $status;
}
 
Hi guys,
I've play arround and get it to work :)

go in Includes folder and open file woo-vou-misc-functions.php
at the bottom you will find license check...

I don't know if this is correct, but after trying, plugin at me work :)

Replace this code:

PHP:
/**
 * WooCommerce - PDF Vouchers license check
 *
 * @package WooCommerce - PDF Vouchers
 * @since 3.7.0
 */
function woo_vou_is_license_activated() {
    $status = false;
    $activated = get_option( 'woo_vou_activated' );
    if( $activated ) {
        $activated = base64_decode( $activated );
        $data = explode( '%', $activated );
        $license_code = get_option( 'woo_vou_activation_code' );
        $email = get_option( 'woo_vou_email_address' );
        if( ! empty( $data ) && $data[0] === $license_code && $data[1] === $email ) {
            $status = true;
        }
    }
    return $status;
}

with this:

PHP:
/**
 * WooCommerce - PDF Vouchers license check
 *
 * @package WooCommerce - PDF Vouchers
 * @since 3.7.0
 */
function woo_vou_is_license_activated() {
    $status = true;
    $activated = get_option( 'woo_vou_activated' );
    if( $activated ) {
        $activated = base64_decode( $activated );
        $data = explode( '%', $activated );
        $license_code = get_option( 'woo_vou_activation_code' );
        $email = get_option( 'woo_vou_email_address' );
        if( ! empty( $data ) && $data[0] === $license_code && $data[1] === $email ) {
            $status = true;
        }
    }
    return $status;
}
Very Good Effort & Find (y). Tried, but found the calendar element, is not functioning properly.
 
@Babak updated 4.7.5 nulled - if it can help. I test and work
 

Attachments

  • woocommerce-pdf-vouchers_4.7.5_nulled.zip
    19.7 MB · Views: 14
Last edited:
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