dcowart Posted August 15, 2006 Share Posted August 15, 2006 I just installed the Featured Products Contribution and I am having some trouble... When I go into the Admin panel and click on the 'featured products' it reads: "The requested URL /admin/FILENAME_FEATURED was not found on this server." Why is it trying to link to that?? I've checked everything but still can't figure out what might be happening, can anyone help out? Thanks, Dean Link to comment Share on other sites More sharing options...
mtechama Posted August 15, 2006 Share Posted August 15, 2006 I just installed the Featured Products Contribution and I am having some trouble... When I go into the Admin panel and click on the 'featured products' it reads: "The requested URL /admin/FILENAME_FEATURED was not found on this server." Why is it trying to link to that?? I've checked everything but still can't figure out what might be happening, can anyone help out? Thanks, Dean What is you web address? Wade Morris Amarillo, Texas Before you do any changes on your site you need to do BACKUP! BACKUP! Link to comment Share on other sites More sharing options...
Guest Posted August 15, 2006 Share Posted August 15, 2006 What is you web address? no offense, but you ask just about every person you respond to, this question and you rarely follow-up once they give you their url. if their problem is admin-related, how do you expect knowing their url is going to help?? dcowart, you need to edit admin/includes/filenames.php and add the line for FILENAME_FEATURED so osc knows what file it's looking for Link to comment Share on other sites More sharing options...
dcowart Posted August 15, 2006 Author Share Posted August 15, 2006 That was it, PERFECT!! Thanks eww! Link to comment Share on other sites More sharing options...
dcowart Posted August 15, 2006 Author Share Posted August 15, 2006 Now that I have it up, I see that it displays the price. I have the contribution that removes price when set to '0' so this doesn't look good... Anyone know how to remove the price with this contribution?? Link to comment Share on other sites More sharing options...
Guest Posted August 15, 2006 Share Posted August 15, 2006 did you add the edit (code) to hide the price, to the featured set on the catalog side? i don't use this contribution myself, but i imagine there's either an extra .php page in the /catalog folder you had to add or something in the includes/ that makes the add-on function.. that would be the file that probably needs the edit Link to comment Share on other sites More sharing options...
dcowart Posted August 16, 2006 Author Share Posted August 16, 2006 EWW can you take a look at this.. I think this would be where the display price code would be located. It is from the includes/modules/featured.php which I think may be like the 'extra' that you mentioned. I tried editing out various things without any luck, but it is all just a guess to me. ?> <!-- featured_products //--> <?php if(FEATURED_PRODUCTS_DISPLAY == 'true') { $featured_products_category_id = $new_products_category_id; $cat_name_query = tep_db_query("select categories_name from " . TABLE_CATEGORIES_DESCRIPTION . " where categories_id = '" . $featured_products_category_id . "' limit 1"); $cat_name_fetch = tep_db_fetch_array($cat_name_query); $cat_name = $cat_name_fetch['categories_name']; $info_box_contents = array(); if ( (!isset($featured_products_category_id)) || ($featured_products_category_id == '0') ) { $info_box_contents[] = array('align' => 'left', 'text' => '<a class="headerNavigation" href="' . tep_href_link(FILENAME_FEATURED_PRODUCTS) . '">' . TABLE_HEADING_FEATURED_PRODUCTS . '</a>'); list($usec, $sec) = explode(' ', microtime()); srand( (float) $sec + ((float) $usec * 100000) ); $mtm= rand(); $featured_products_query = tep_db_query("select p.products_id, p.products_image, p.products_tax_class_id, s.status as specstat, s.specials_new_products_price, p.products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id left join " . TABLE_FEATURED . " f on p.products_id = f.products_id where p.products_status = '1' and f.status = '1' order by rand($mtm) DESC limit " . MAX_DISPLAY_FEATURED_PRODUCTS); } else { $info_box_contents[] = array('align' => 'left', 'text' => sprintf(TABLE_HEADING_FEATURED_PRODUCTS_CATEGORY, $cat_name)); $featured_products_query = tep_db_query("select distinct p.products_id, p.products_image, p.products_tax_class_id, s.status as specstat, s.specials_new_products_price, p.products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c left join " . TABLE_FEATURED . " f on p.products_id = f.products_id where p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and c.parent_id = '" . $featured_products_category_id . "' and p.products_status = '1' and f.status = '1' order by rand() DESC limit " . MAX_DISPLAY_FEATURED_PRODUCTS); } $row = 0; $col = 0; $num = 0; while ($featured_products = tep_db_fetch_array($featured_products_query)) { $num ++; if ($num == 1) { new contentBoxHeading($info_box_contents); } $featured_products['products_name'] = tep_get_products_name($featured_products['products_id']); if($featured_products['specstat']) { $info_box_contents[$row][$col] = array('align' => 'center', 'params' => 'class="smallText" width="33%" valign="top"', 'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $featured_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $featured_products['products_image'], $featured_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $featured_products['products_id']) . '">' . $featured_products['products_name'] . '</a><br><s>' . $currencies->display_price($featured_products['products_price'], tep_get_tax_rate($featured_products['products_tax_class_id'])) . '</s><br><span class="productSpecialPrice">' . $currencies->display_price($featured_products['specials_new_products_price'], tep_get_tax_rate($featured_products['products_tax_class_id'])) . '</span>'); } else { $info_box_contents[$row][$col] = array('align' => 'center', 'params' => 'class="smallText" width="33%" valign="top"', 'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $featured_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $featured_products['products_image'], $featured_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $featured_products['products_id']) . '">' . $featured_products['products_name'] . '</a><br>' . $currencies->display_price($featured_products['products_price'], tep_get_tax_rate($featured_products['products_tax_class_id']))); } $col ++; if ($col > 2) { $col = 0; $row ++; } } if($num) { new contentBox($info_box_contents); } } else // If it's disabled, then include the original New Products box { include (DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); } ?> <!-- featured_products_eof //--> Link to comment Share on other sites More sharing options...
djcontact Posted August 17, 2006 Share Posted August 17, 2006 im not sure if this will remove the price but it doesnt hurt to try... remove: $currencies->display_price($featured_products['products_price'], Link to comment Share on other sites More sharing options...
dcowart Posted August 17, 2006 Author Share Posted August 17, 2006 Hmm, yeah I tried that, but no luck... any other ideas? Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.