• 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 Product Add-Ons Ultimate– Basic-Plugin Republic

update_option( 'pewc_license_status', 'valid' ); in functions-updater.php should do the trick :) - do you have latest version ?
 
I tested it, and it doesn't work. This is not a premium version, but a basic one. It is not half as useful. :(
 
Change 168 lines in functions-updater.php

// $license_data->license will be either "valid" or "invalid"
update_option( 'pewc_license_status', 'valid' );

Change 336 line 1 to 0.
$license = get_option( 'pewc_license_level', 0 );

Now pro version working :)
 

Attachments

  • product-extras-for-woocommerce.zip
    607.9 KB · Views: 172
Anyone got the latest version? Also the steps above don't null the product. It still flags licence key. Is this normal? How do we remove the licence message if nulled?

Current version we have is 3.8.8

Latest changes to plugin

3.8.9, 25 March 2021
  • Added: pewc_after_upload_script_init and pewc_dz_tpl_td actions
  • Added: quantity param in $file object for uploads
  • Added: pewc_remove_spaces_in_text filter
  • Added: look up tables empty cells return null
  • Fixed: group conditions not hiding correctly in the cart
  • Fixed: group conditions not duplicating correctly
  • Fixed: multiply price for number fields using percentage pricing
  • Fixed: Multiply Price setting not saving on new number field
  • Fixed: calculations always rounding to 2 decimal places
  • Fixed: group conditions based on select box fields
  • Updated: removed pewc_license_admin_notices nag
Any advice or help is much appreciated :)

Edit: Just to add to the changes. Does anyone have the Bundle version? It adds some nice features to the current plugin that is already awesome.
 
Last edited:
  • Like
Reactions: bathrug
Please someone updated and nulled plugin

Please someone upload the updated and nulled version of this plugin
 
To remove the licence message, rather then having 'ok', or the original warning, comment/delete the following code from funtions-updater.php on line 254 just after } ...

else if( $status != 'valid' ) {
$message = sprintf(
__( 'Your license is not currently activated. Please ensure you activate your license in order to use all the features of this plugin. Your license number will be on the email you were sent with the download link or on <a target="_blank" href="%s">your account page</a>.', 'pewc' ),
esc_url( PEWC_STORE_URL . '/my-account/' )
);
$settings_url = pewc_get_settings_url();
$message .= sprintf(
__( '<p><a href="%s">Enter your license key here</a></p>', 'pewc' ),
$settings_url
);
printf(
'<div class="notice notice-error"><p><strong>%s</strong></p><p>%s</p></div>',
__( 'WooCommerce Product Add-Ons Ultimate', 'pewc' ),
$message
);
}

if( isset( $_GET['show_response'] ) ) {
$error = get_option( 'pewc_test_response', false );
if( $error ) {
printf(
'<div class="notice notice-error"><pre>%s</pre></div>',
print_r( $error, true )
);
}
}



On a lighter note - Please can someone upload the latest version (3.8.9) if possible to test the bug fixes out.

Enjoy and Thanks :)
 
Try this nulled version

/wp-content/plugins/product-extras-for-woocommerce/inc/functions-updater.php

line #344 to #349

change
Code:
function pewc_is_pro() {
     $license = pewc_get_license_level();
     if( $license == 0 && is_numeric( $license ) ) {
         return true;
     }
    return false;

in
Code:
function pewc_is_pro() {
     $license = pewc_get_license_level();
     if( $license != 0 && is_numeric( $license ) ) {
         return true;
     }
    return false;


it works for me
 
  • Like
Reactions: Babak and marcost96
Please can someone upload latest "nulled" version if possible :). Thanks
 
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