The ship icon (ship.gif) on sellers' "Fufill Orders" menu does not show because it's path is incorrect. The "user/2/selling" part of the path needs to be removed as follows:

user/2/selling/modules/ubercart/shipping/uc_shipping/images/ship.gif

to

modules/ubercart/shipping/uc_shipping/images/ship.gif

Comments

keyser79’s picture

Priority: Minor » Normal
Status: Active » Needs work
keyser79’s picture

line 255 of mp_orders.module:
'icon' => '<img src="'. drupal_get_path('module', 'uc_shipping') .'/images/ship.gif" />',

needs to be replaced with:
'icon' => '<img src="'. base_path() . drupal_get_path('module', 'uc_shipping') .'/images/ship.gif" />',

syndicateStorm’s picture

Status: Needs work » Closed (duplicate)