Hi,

When a site is placed in a subdirectory and an image style is used, the menu icons do not appear anymore. This is due to the usage of base_path() on line 263 in menu_icons.module. The solution is to change the line from :

      $image_url = base_path() . $image_path;

to

      $image_url = file_create_url($image_path);

Any feedback or suggestions?

cheers,

Thomas

Comments

acrollet’s picture

Version: 7.x-3.0-beta1 » 7.x-3.x-dev
Status: Active » Closed (duplicate)

this is a duplicate of #1399516: Icons disappear after update, which is fixed in the dev release. Please re-open that ticket if using the latest dev release does not fix your issue.