Closed (fixed)
Project:
Ubercart Custom Price
Version:
6.x-1.x-dev
Component:
User interface
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
25 Aug 2009 at 13:04 UTC
Updated:
12 May 2011 at 04:51 UTC
I'd like if this block on product edit pages were expanded if in use (i.e. not the default value).
Sometimes I forget if I have custom price calcs on some products and wonder why the pricing is going nuts.
Comments
Comment #1
illepic commentedOn about line 97 of uc_custom_price.module you should see:
'#collapsed' => TRUE,
change that to:
'#collapsed' => FALSE,
Comment #2
illepic commentedAh, i see you have an "expanded in use" clause up there. Technically it's always in use with
$item->price = $item->price;
as a default value, it looks like.
Comment #3
tr commentedYou can always change the form with hook_form_alter() if you want it to show up expanded. That's not something I'm going to change in the module in the near future.