Closed (duplicate)
Project:
Ubercart Marketplace
Version:
5.x-1.0-beta5
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
19 Jun 2009 at 03:13 UTC
Updated:
19 Jan 2010 at 00:52 UTC
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
Comment #1
keyser79 commentedComment #2
keyser79 commentedline 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" />',Comment #3
syndicateStorm commentedDuplicate of http://drupal.org/node/336035