Is there a way to set the default price of a non-shippable-product?

instead of

0.00

something like,

10.00

Comments

Architeck’s picture

setting per content type would be ideal

burningdog’s picture

Subscribe

burningdog’s picture

Check out the EC Role Price module. With this module you can set a fixed price for each specified role within the product creation form.

burningdog’s picture

Status: Active » Postponed (maintainer needs more info)

You could also put the following code in hook_form_alter:

if (!$form['nid']['#value']) {
      //this is a new song
      $form['product']['price']['#default_value'] = '10.00';
    }

At least, this works for me with e-Commerce 4 and Drupal 6 - does it work for e-Commerce 3?