navyhost Posted May 21, 2008 Posted May 21, 2008 Hi guys, I would like to remove the hyper link in the bread crumb for the page the customer is on and leave the rest as a link. Does any one know how to pull this off? thanks in advance for the assistance. Sincerely Mike
spooks Posted May 21, 2008 Posted May 21, 2008 Breadcrumb is done in application top, from about 516, youll have to modify that. :) Sam Remember, What you think I ment may not be what I thought I ment when I said it. Contributions: Auto Backup your Database, Easy way Multi Images with Fancy Pop-ups, Easy way Products in columns with multi buy etc etc Disable any Category or Product, Easy way Secure & Improve your account pages et al.
navyhost Posted May 21, 2008 Author Posted May 21, 2008 Breadcrumb is done in application top, from about 516, youll have to modify that. :) Hi spooks Thanks for the input, I tracked the section that needs editing: // add the products name to the breadcrumb trail if (isset($HTTP_GET_VARS['products_id'])) { $model_query = tep_db_query("select products_name from " . TABLE_PRODUCTS_DESCRIPTION . " where products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "'"); if (tep_db_num_rows($model_query)) { $model = tep_db_fetch_array($model_query); $breadcrumb->add($model['products_name'], tep_href_link(FILENAME_PRODUCT_INFO, 'cPath=' . $cPath . '&products_id=' . $HTTP_GET_VARS['products_id'])); } } Problem is, I am not sure how to properly edit the code to make it non linkable. :) Sincerely Mike
spooks Posted May 21, 2008 Posted May 21, 2008 Hi Thanks for the input, I tracked the section that needs editing: // add the products name to the breadcrumb trail if (isset($HTTP_GET_VARS['products_id'])) { $model_query = tep_db_query("select products_name from " . TABLE_PRODUCTS_DESCRIPTION . " where products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "'"); if (tep_db_num_rows($model_query)) { $model = tep_db_fetch_array($model_query); $breadcrumb->add($model['products_name'], tep_href_link(FILENAME_PRODUCT_INFO, 'cPath=' . $cPath . '&products_id=' . $HTTP_GET_VARS['products_id'])); } } Problem is, I am not sure how to proper code not to make it linkable. :) Ok, I was`nt sure which section you ment, change: if (tep_db_num_rows($model_query)) { $model = tep_db_fetch_array($model_query); $breadcrumb->add($model['products_name'], tep_href_link(FILENAME_PRODUCT_INFO, 'cPath=' . $cPath . '&products_id=' . $HTTP_GET_VARS['products_id'])); } To: if (tep_db_num_rows($model_query)) { $model = tep_db_fetch_array($model_query); $breadcrumb->add($model['products_name'], ''); } B) Sam Remember, What you think I ment may not be what I thought I ment when I said it. Contributions: Auto Backup your Database, Easy way Multi Images with Fancy Pop-ups, Easy way Products in columns with multi buy etc etc Disable any Category or Product, Easy way Secure & Improve your account pages et al.
navyhost Posted May 21, 2008 Author Posted May 21, 2008 Ok, I was`nt sure which section you ment, change: if (tep_db_num_rows($model_query)) { $model = tep_db_fetch_array($model_query); $breadcrumb->add($model['products_name'], tep_href_link(FILENAME_PRODUCT_INFO, 'cPath=' . $cPath . '&products_id=' . $HTTP_GET_VARS['products_id'])); } To: if (tep_db_num_rows($model_query)) { $model = tep_db_fetch_array($model_query); $breadcrumb->add($model['products_name'], ''); } B) awesome! you rock Sam! Worked perfect! Sincerely Mike
Recommended Posts
Archived
This topic is now archived and is closed to further replies.