does anyone know where the ec_charge settings page should show up, or if there are other modules I need to have installed to get it to work?

I uninstalled it, removed the lines I could identify from variable and settings tables to try to get a clean install, but I'm still not seeing things that seem like they should have settings pages.

all I need is to add a flat shipping charge based on cart total. if anyone has something like that working, if you don't mind sharing I'd love to get your recipe.

thanks for any advice.

Comments

miahawk’s picture

Component: new module » installation
Category: support » bug

ok, I found it by looking in the ec_charge.admin.inc file.

for some reason, the menu item pointing to admin/ecsettings/charges wasn't added, but I can add it myself.

I'm changing this to an installation bug. the actual issue is that the menu item and link to Charges weren't added.

pfaocle’s picture

Priority: Normal » Critical

Lines in hook_menu() -

    $items[] = array(
      'path'                => 'admin/ecsettings/charges',

should be:


    $items['admin/ecsettings/charges'] = array(

removing the 'path' line. Sorry I've no patch (yet).