Hi there,

I have hundreds of products in my store and I have few product classes to manage the 'Fees' and other customizations associated with my products.

In one of the class, I have excluded "Setup Fee" earlier, now that product classes "products" needs to have "Setup Fee" but the interface is not even displaying that particular fee to Uncheck the "Exclude" option. I have 80+ products in that class, how to get "Setup Fee" back for these products?

Please help me..

With regards,
R Kaja Mohideen

Comments

mrfelton’s picture

Yeah, confirmed - it's a bug. I'm prety busy with other stuff atm and am not really using this module myself, so not sure when I'll be able to fix it. I'll try to get this fixed in the next couple of weeks. In the meantime, I'll happily test any patches!

bisonbleu’s picture

Any progress on this front?
I'm currently facing the same problem (and others too) and it's a bummer... :-(

If you're not yourself using this module can you suggest an alternative that does more or less the same thing?
Many thanks!

mrfelton’s picture

Hi there.
Sorry but no progress from me. I'm not using this module on any sites that I currently work on. Again - I'm more than happy to test and commit patches.

brutuscat’s picture

What I did to have this working Ok, was to remove these lines from uc_fee.module file at the uc_class_get_fees method ;)

    // don't include fees that have been excluded
    if ($object_fees[$fee->fid] && !$object_fees[$fee->fid]->is_active) {
      continue;
    }

This way the fees are loading no matter if they were globally excluded for that product class, and they load with the global settings ;)

summit’s picture

Subscribing, greetings, Martijn