JustinS 1 Posted June 17, 2012 (edited) Multiple Products Manager v2.6. Trying to get this installed. I've put everything in the correct files, but now I am getting a problem with the code they give me to put into admin/includes/boxes/catalog.php. Instructions Given: Find: '<a href="' . tep_href_link(FILENAME_PRODUCTS_ATTRIBUTES, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_CATALOG_CATEGORIES_PRODUCTS_ATTRIBUTES . '</a><br>' . Add After: '<a href="' . tep_href_link(FILENAME_PRODUCTS_MULTI, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_CATALOG_CATEGORIES_PRODUCTS_MULTI . '</a><br>' . ______________ What I find: array( 'code' => FILENAME_PRODUCTS_ATTRIBUTES, 'title' => BOX_CATALOG_CATEGORIES_PRODUCTS_ATTRIBUTES, 'link' => tep_href_link(FILENAME_PRODUCTS_ATTRIBUTES) ), What I tried to convert it to: array( 'code' => FILENAME_PRODUCTS_MULTI, 'title' => MultiProducts, 'link' => (FILENAME_PRODUCTS_MULTI ), Error: Parse error: syntax error, unexpected ';', expecting ')' in /home/a7852663/public_html/admin/includes/boxes/catalog.php on line 58 EDIT: FIXED. I WAS MISSING AN ) AFTER (FILENAME_PRODUCTS_MULTI) Will leave here for Google I guess? Edited June 17, 2012 by JustinS Share this post Link to post Share on other sites
tedbooks 8 Posted June 17, 2012 (edited) 'link' => (FILENAME_PRODUCTS_MULTI) ), Edited June 17, 2012 by tedbooks Share this post Link to post Share on other sites