ErollorD Posted October 8, 2006 Posted October 8, 2006 Hi How can I add category name instead of "Let's See What We Have Here"??
jpweber Posted October 8, 2006 Posted October 8, 2006 Open up (path to catalog)/includes/languages/english.php. Find: define('HEADING_TITLE', 'Let\'s See What We Have Here'); Change To: define('HEADING_TITLE', 'Category Name'); Or define('HEADING_TITLE', ''); (For a blank space) Save, and upload the file to the according directory. Good luck. Jason Simple 1-2-3 Intructions on how to get, install and configure SSL The Google Sandbox explained Simple to follow instructions on how to change the look of your OSC How To Make A Horrible OSC Website my toolbox: All things WordPress-related - All things Adobe-related - PHP Designer 2007 - Codecanyon Junkie - Crimson Editor - Winmerge - phpMyAdmin - WS_FTP my installed contributions: Category Banners, File Upload feature-.77, Header Tags, Sort_Product_Attributes_1, XSellv2.3, Price Break 1.11.2, wishlist 3.5, rollover_category_images_v1.2, Short_Description_v2.1, UPSXML_v1_2_3, quickbooks qbi_v2_10, allprods v4.4, Mouseover-effect for image-buttons 1.0, Ultimate_SEO, AAP 1.41, Auto Select State Value, Fast Easy Checkout, Dynamic SiteMap v2.0, Image Magic, Links Manager 1.14, Featured Products, Customer Testimonials, Article Manager, FAQ System, and I'm sure more ...
ErollorD Posted October 8, 2006 Author Posted October 8, 2006 as I understand this, it will show me "Category Name" but I want to show me, for example Diamond Blades for 1 cat and for next Stone Blades...
bill110 Posted October 8, 2006 Posted October 8, 2006 as I understand this, it will show me "Category Name" but I want to show me, for example Diamond Blades for 1 cat and for next Stone Blades... in catalog/includeslanguages/english/index.php about line 19 define( 'HEADING_TITLE', 'Categories'); Change to: define('HEADING_TITLE', $breadcrumb->last()); then about line38 and 39 } elseif ($category_depth == 'nested') { define('HEADING_TITLE','Let/s see bla bla change to this } elseif ($category_depth == 'nested') { define('HEADING_TITLE', 'Select one of our "' .$breadcrumb->last(). '" catagories below'); The last one can be edited to say whatever you want before and after the catagory name. you just need single quotes on each side with code for a space at the end and then a period before and after the breadcrumb call.( The second Heading title is for when there are sub-catagories) My Contributions Stylesheet With Descriptions Glassy Grey Boxtops Our Products Meta Tags On The Fly Password Protect Admin "No matter where you go....There you are" - Buccaroo Bonsai
ErollorD Posted October 8, 2006 Author Posted October 8, 2006 Here is the image what I want, I did everything you said but I get error with unknown function last()??
jpweber Posted October 8, 2006 Posted October 8, 2006 Here's what I have on my includes/languages/english/index.php, and I don't have a "Let's See What We Have Here" on any page; on every page, it shows whatever category or product I'm on. define('TABLE_HEADING_NEW_PRODUCTS', 'New Products For %s');define('TABLE_HEADING_UPCOMING_PRODUCTS', 'Upcoming Products'); define('TABLE_HEADING_DATE_EXPECTED', 'Date Expected'); if ( ($category_depth == 'products') || (isset($HTTP_GET_VARS['manufacturers_id'])) ) { define('HEADING_TITLE', 'Let\'s See What We Have Here'); define('TABLE_HEADING_IMAGE', ''); define('TABLE_HEADING_MODEL', 'Model'); define('TABLE_HEADING_PRODUCTS', 'Product Name'); define('TABLE_HEADING_MANUFACTURER', 'Manufacturer'); define('TABLE_HEADING_QUANTITY', 'Quantity'); define('TABLE_HEADING_PRICE', 'Price'); define('TABLE_HEADING_WEIGHT', 'Weight'); define('TABLE_HEADING_BUY_NOW', 'Buy Now'); define('TEXT_NO_PRODUCTS', 'There are no products to list in this category.'); define('TEXT_NO_PRODUCTS2', 'There is no product available from this manufacturer.'); define('TEXT_NUMBER_OF_PRODUCTS', 'Number of Products: '); define('TEXT_SHOW', '<b>Show:</b>'); define('TEXT_BUY', 'Buy 1 \''); define('TEXT_NOW', '\' now'); define('TEXT_ALL_CATEGORIES', 'All Categories'); define('TEXT_ALL_MANUFACTURERS', 'All Manufacturers'); } elseif ($category_depth == 'top') { define('HEADING_TITLE', 'What\'s New Here?'); } elseif ($category_depth == 'nested') { define('HEADING_TITLE', 'Categories'); } ?> Jason Simple 1-2-3 Intructions on how to get, install and configure SSL The Google Sandbox explained Simple to follow instructions on how to change the look of your OSC How To Make A Horrible OSC Website my toolbox: All things WordPress-related - All things Adobe-related - PHP Designer 2007 - Codecanyon Junkie - Crimson Editor - Winmerge - phpMyAdmin - WS_FTP my installed contributions: Category Banners, File Upload feature-.77, Header Tags, Sort_Product_Attributes_1, XSellv2.3, Price Break 1.11.2, wishlist 3.5, rollover_category_images_v1.2, Short_Description_v2.1, UPSXML_v1_2_3, quickbooks qbi_v2_10, allprods v4.4, Mouseover-effect for image-buttons 1.0, Ultimate_SEO, AAP 1.41, Auto Select State Value, Fast Easy Checkout, Dynamic SiteMap v2.0, Image Magic, Links Manager 1.14, Featured Products, Customer Testimonials, Article Manager, FAQ System, and I'm sure more ...
bill110 Posted October 8, 2006 Posted October 8, 2006 Here's what I have on my includes/languages/english/index.php, and I don't have a "Let's See What We Have Here" on any page; on every page, it shows whatever category or product I'm on. Here is another way. I havent tried this because the breadcrumb fix works for me: http://www.oscommerce.com/community/contributions,1908/ My Contributions Stylesheet With Descriptions Glassy Grey Boxtops Our Products Meta Tags On The Fly Password Protect Admin "No matter where you go....There you are" - Buccaroo Bonsai
Recommended Posts
Archived
This topic is now archived and is closed to further replies.