valquiria23 234 Posted May 8, 2018 Hola Alfonso Gonzalez @reflex-ocasion I want to add a link in the Manufacturers box with the text " All Manufacturers" linking to the file allmanufacturers.php . can anybody help me? Best regards. Valqui Community Oscommerce fan You'll find the latest osC community version here. Share this post Link to post Share on other sites
reflex-ocasion 8 Posted May 8, 2018 Something fast Edit catalog/includes/modules/boxes/bm_manufacturers.php Search lines 65, 66 and 67 $data = tep_draw_form('manufacturers', tep_href_link('index.php', '', $request_type, false), 'get') . tep_draw_pull_down_menu('manufacturers_id', $manufacturers_array, (isset($_GET['manufacturers_id']) ? $_GET['manufacturers_id'] : ''), 'onchange="this.form.submit();" size="' . MAX_MANUFACTURERS_LIST . '" style="width: 100%"') . tep_hide_session_id() . '</form>'; Add below $data .= '<a href="' . tep_href_link('allmanufacturers.php') . '">' . MODULE_BOXES_MANUFACTURER_BOX_ALLMANUFACTURERS . '</a>'; Add to language file catalog/includes/languages/english/modules/boxes/bm_manufacturers.php define('MODULE_BOXES_MANUFACTURER_BOX_ALLMANUFACTURERS', 'All Manufacturers'); It would be necessary to polish the code but as it is something quick... Best regards from Spain 1 valquiria23 reacted to this Share this post Link to post Share on other sites
reflex-ocasion 8 Posted May 8, 2018 I imagine you need it INSIDE the drop-down menu, right? Right now I'm busy, I'm sorry, as soon as I can, I get to it. 1 valquiria23 reacted to this Share this post Link to post Share on other sites
valquiria23 234 Posted May 8, 2018 Gracias Alfonso @reflex-ocasion Voy a probar la primera solucion, pero si podes ponerlo dentro del drop-down menu seria genial!! Beso Valqui Community Oscommerce fan You'll find the latest osC community version here. Share this post Link to post Share on other sites