• 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

Agree with @buddhamaan .We have had major updates and no one is sharing :(. Surely its available by someone as its been shared before @tonyjaa ;)...

3.9.0, 15 June 2021
Added: new settings for choosing where to display field and option prices
Added: support for ACF fields in calculations via Advanced Calculations
Added: trigger wcaouau-update-quantity-field on upload removal
Added: pewc_update_select_box trigger
Added: reset calculation field values
Added: pewc_validate_child_products_stock filter to prevent parent product added to cart if child product is out of stock
Added: new Home page in Product Add-Ons menu
Fixed: set max chars with/without spaces in text fields
Fixed: expanded select box hidden in accordion group
Fixed: allow uploads with same filename
Fixed: next/previous buttons miss hidden groups in steps layout

= 3.8.10, 3 May 2021 =
* Added: pewc_child_product_excerpt filter
* Added: pewc_v_term_name and pewc_h_term_name filters
* Added: option to display group titles in cart
* Added: use getimagesize to validate uploaded files
* Added: pewc_use_item_meta_in_order_item filter
* Added: reset values when using group conditions
* Fixed: disable dropzone while file is removed
* Fixed: image swatch option prices not updating for percentage variations
* Fixed: quickview template removing tabs and related products
* Fixed: update price correctly when removing uploaded file
* Fixed: >= condition not respected in cart
* Fixed: products fields not triggering group conditions
* Fixed: tabs layout on mobile
* Fixed: ensure calculation fields set price correctly on variable products
* Fixed: escape field attributes on single-product.php
* Fixed: updated metadata not shown in resent email notifications
* Fixed: min number of child products respected on column and checkbox layout only
* Fixed: product field select layout not discounting correctly
* Updated: cart editing allowed in Basic licence
* Updated: removed pewc_minicart_item_price filter
* Updated: resetting values through conditions restores defaults (in certain cases)

= 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
 
  • Like
Reactions: junga
Shocked this post has gone quiet. Amazing plugin that I assumed had plenty of support behind it.
 
Anybody has the pro version nulled?

/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
Is this the basic or pro version?
 
@mike77, the pro version downloaded from this thread. But I'm not sure if the patch in my post was the final because it worked for a while, after I modified again and after I abandoned this plugin for another.
 
Has anyone found a product like this, as I am hitting limitations (like ability to add products from a category and not having to manually add new products all the time)... I really like the product but I feel like there maybe something else that is better?

Basically use it to allow users to create their ultimate bundle of over 100+ items but ideally would like to ability to limit choices and link to product categories.
 
This plugin doesn't really need to be nulled by anyone other than yourself as you can update it within Woocommerce or via FTP.

Just do the following:

(You can replace YOURWEBSITE with your domain and skip to step X if you to make it abit easier
URL: https://YOURWEBSITE/wp-admin/plugin...oocommerce/product-extras-for-woocommerce.php)

  1. Go to your admin panel
  2. Plugins (Left menu)
  3. Plugin Editor (Left Menu)
  4. Select Woocommerce Product Add-on Ultimate (top right dropdown menu)
  5. Click on 'inc' -> functions-updater.php (right hand menu)
  6. Scroll down to line 346 and change if( $license == 0 && is_numeric( $license ) ) { to if( $license != 0 && is_numeric( $license ) ) { (or see the code examples below)
From This (Starting at Line 344)
PHP:
function pewc_is_pro() {
     $license = pewc_get_license_level();
     if( $license == 0 && is_numeric( $license ) ) {
         return true;
     }
    return false;
}
(ending at line 350)

To this (Starting at Line 344)
PHP:
function pewc_is_pro() {
     $license = pewc_get_license_level();
     if( $license != 0 && is_numeric( $license ) ) {
         return true;
     }
    return false;
}
(ending at line 350)

This sadly disables auto updating, but after each plugin update (until they change how this code works) you just simply change this code back....easy :).
 
This plugin doesn't really need to be nulled by anyone other than yourself as you can update it within Woocommerce or via FTP.

Just do the following:

(You can replace YOURWEBSITE with your domain and skip to step X if you to make it abit easier
URL: https://YOURWEBSITE/wp-admin/plugin-editor.php?file=product-extras-for-woocommerce/inc/functions-updater.php&plugin=product-extras-for-woocommerce/product-extras-for-woocommerce.php)

  1. Go to your admin panel
  2. Plugins (Left menu)
  3. Plugin Editor (Left Menu)
  4. Select Woocommerce Product Add-on Ultimate (top right dropdown menu)
  5. Click on 'inc' -> functions-updater.php (right hand menu)
  6. Scroll down to line 346 and change if( $license == 0 && is_numeric( $license ) ) { to if( $license != 0 && is_numeric( $license ) ) { (or see the code examples below)
From This (Starting at Line 344)
PHP:
function pewc_is_pro() {
     $license = pewc_get_license_level();
     if( $license == 0 && is_numeric( $license ) ) {
         return true;
     }
    return false;
}
(ending at line 350)

To this (Starting at Line 344)
PHP:
function pewc_is_pro() {
     $license = pewc_get_license_level();
     if( $license != 0 && is_numeric( $license ) ) {
         return true;
     }
    return false;
}
(ending at line 350)

This sadly disables auto updating, but after each plugin update (until they change how this code works) you just simply change this code back....easy :).

thanks bracken752
trying it out now.

please can u confirm that this will keep working as the pro version of the plugin or revert to standard version?

EDIT: nevermind. I figured this out and understand that as long as I change the code as you have described it will remain pro. Thanks a million
 
Last edited:
This plugin doesn't really need to be nulled by anyone other than yourself as you can update it within Woocommerce or via FTP.

Just do the following:

(You can replace YOURWEBSITE with your domain and skip to step X if you to make it abit easier
URL: https://YOURWEBSITE/wp-admin/plugin-editor.php?file=product-extras-for-woocommerce/inc/functions-updater.php&plugin=product-extras-for-woocommerce/product-extras-for-woocommerce.php)

  1. Go to your admin panel
  2. Plugins (Left menu)
  3. Plugin Editor (Left Menu)
  4. Select Woocommerce Product Add-on Ultimate (top right dropdown menu)
  5. Click on 'inc' -> functions-updater.php (right hand menu)
  6. Scroll down to line 346 and change if( $license == 0 && is_numeric( $license ) ) { to if( $license != 0 && is_numeric( $license ) ) { (or see the code examples below)
From This (Starting at Line 344)
PHP:
function pewc_is_pro() {
     $license = pewc_get_license_level();
     if( $license == 0 && is_numeric( $license ) ) {
         return true;
     }
    return false;
}
(ending at line 350)

To this (Starting at Line 344)
PHP:
function pewc_is_pro() {
     $license = pewc_get_license_level();
     if( $license != 0 && is_numeric( $license ) ) {
         return true;
     }
    return false;
}
(ending at line 350)

This sadly disables auto updating, but after each plugin update (until they change how this code works) you just simply change this code back....easy :).

Now just waiting for the latest version. I understand it is 3.9.1 so far. Hope tonyjaa can upload it here soon.
 
Last edited:
@mike77, the pro version downloaded from this thread. But I'm not sure if the patch in my post was the final because it worked for a while, after I modified again and after I abandoned this plugin for another.
which plugin did you switch to?
 
  • Like
Reactions: gordian
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