osCommerce and osCMax shopping cart software forums

Shopping Cart Software

osCommerce with teeth!

 

Let\'s See What We Have Here instead of Category Name

This is a discussion on Let\'s See What We Have Here instead of Category Name within the osCMax v2 Customization/Mods forums, part of the osCMax v2.0 Forums category; Hello we just purchased a template of oscmax (Looks like it an oscommerce template) It workd fine , but it is ...


Go Back   osCommerce and osCMax shopping cart software forums > osCMax v2.0 Forums > osCMax v2 Customization/Mods

Register FAQ Members List Calendar Mark Forums Read


Free community membership! Fast easy FREE membership
Reply

 

LinkBack Thread Tools
  #1  
Old 04-16-2008, 11:04 PM
Member
 
Join Date: Mar 2007
Posts: 47
Thanks: 2
Thanked 0 Times in 0 Posts
Rep Power: 0
yulises is on a distinguished road
Default Let\'s See What We Have Here instead of Category Name

Hello
we just purchased a template of oscmax (Looks like it an oscommerce template)
It workd fine , but it is showing "Lets see what we have here" instead of the category name , ( like it is in oscommerce)
we got oscmax 2.0 rc3 version
Does anyone knows where can I change it , so the categories heading will be the category name.

Thank you
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 04-17-2008, 04:52 AM
michael_s's Avatar
osCMax Developer

 
Join Date: Jul 2002
Location: Phoenix, AZ
Posts: 10,247
Thanks: 66
Thanked 294 Times in 280 Posts
Rep Power: 10
michael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond repute
Default Re: Let\'s See What We Have Here instead of Category Name

First, do you have the Display category names feature enabled in the admin?

Next, you would edit this in the index_products.tpl.php file and make sure the following code is present where the category description is supposed to be displayed:

PHP Code:
<?php
/* bof catdesc for bts1a, replacing "echo HEADING_TITLE;" by "categories_heading_title" */
             
if ( (ALLOW_CATEGORY_DESCRIPTIONS == 'true') && (tep_not_null($category['categories_heading_title'])) ) {
                 echo 
$category['categories_heading_title'];
               } else {
                 echo 
HEADING_TITLE;
               }
/* eof catdesc for bts1a */ ?>
__________________
Michael Sasek
osCMax Developer


osCMax Templates - Hundreds of premium quality templates. New designs every month!

xShop for osCMax - Windows Based osCMax administration. Improved workflow, security, speed and convenience


osCMax Hosting - From basic hosting to High Availability, Load Balanced arrays, the most experienced osCMax host.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 04-17-2008, 04:04 PM
osCMax Testing Team
 
Join Date: Mar 2008
Location: The Netherlands
Posts: 27
Thanks: 2
Thanked 1 Time in 1 Post
Rep Power: 0
Gizmor is on a distinguished road
Default Re: Let\'s See What We Have Here instead of Category Name

i must say that this mod that is in OSCmax is pretty useless it does it work for a depth of 2 cat's not more so if you have a top catagorie that name it takes over and sometimes a catagorie below that but not further.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 04-17-2008, 05:19 PM
michael_s's Avatar
osCMax Developer

 
Join Date: Jul 2002
Location: Phoenix, AZ
Posts: 10,247
Thanks: 66
Thanked 294 Times in 280 Posts
Rep Power: 10
michael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond repute
Default Re: Let\'s See What We Have Here instead of Category Name

Quote:
Originally Posted by Gizmor View Post
i must say that this mod that is in OSCmax is pretty useless it does it work for a depth of 2 cat's not more so if you have a top catagorie that name it takes over and sometimes a catagorie below that but not further.
Works fine for me beyond 2 deep categories.

I just tested on 5 deep and it works fine with no issues. Take a look at the screen shot.
Attached Images
File Type: jpg 5deep-cats.jpg (18.5 KB, 5 views)
__________________
Michael Sasek
osCMax Developer


osCMax Templates - Hundreds of premium quality templates. New designs every month!

xShop for osCMax - Windows Based osCMax administration. Improved workflow, security, speed and convenience


osCMax Hosting - From basic hosting to High Availability, Load Balanced arrays, the most experienced osCMax host.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5  
Old 04-19-2008, 12:27 AM
Member
 
Join Date: Mar 2007
Posts: 47
Thanks: 2
Thanked 0 Times in 0 Posts
Rep Power: 0
yulises is on a distinguished road
Default Re: Let\'s See What We Have Here instead of Category Name

tha file index_products.tpl.php was only in fallback template
It seems to be fine (like you said it should be "

<?php
/* bof catdesc for bts1a, replacing "echo HEADING_TITLE;" by "categories_heading_title" */
if ( (ALLOW_CATEGORY_DESCRIPTIONS == 'true') && (tep_not_null($category['categories_heading_title'
])) ) {
echo
$category['categories_heading_title'
];
} else {
echo
HEADING_TITLE
;
}
/* eof catdesc for bts1a */ ?>


any way I noticed that the problem is in all templates aabox and fallback too.
any Idea?
Thanks

Nimrod

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6  
Old 04-19-2008, 06:38 AM
osCMax Testing Team
 
Join Date: Mar 2008
Location: The Netherlands
Posts: 27
Thanks: 2
Thanked 1 Time in 1 Post
Rep Power: 0
Gizmor is on a distinguished road
Default Re: Let\'s See What We Have Here instead of Category Name

Quote:
Originally Posted by yulises View Post
tha file index_products.tpl.php was only in fallback template
It seems to be fine (like you said it should be "

<?php
/* bof catdesc for bts1a, replacing "echo HEADING_TITLE;" by "categories_heading_title" */
if ( (ALLOW_CATEGORY_DESCRIPTIONS == 'true') && (tep_not_null($category['categories_heading_title'
])) ) {
echo
$category['categories_heading_title'
];
} else {
echo
HEADING_TITLE
;
}
/* eof catdesc for bts1a */ ?>


any way I noticed that the problem is in all templates aabox and fallback too.
any Idea?
Thanks

Nimrod
i do still have the same problem but when i worked with OSC i had a contri that did work ill search it up and post it here maybe that one does work for us.

/edit,

with some searching i got it working like it should but then again i have index_products.tpl.php in my templates folder, so i think you should copy it over to your template folder (just in case) and further i made the mistake that i had made cat's without the mod on so that's why it didn't work. So set the mod to true and check your cat's so select one and edit it then you should get a other page then normal and make sure that "Category Name:" and "Category Heading Title:" are filled in then it should work.

Last edited by Gizmor; 04-19-2008 at 07:22 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7  
Old 04-19-2008, 07:47 AM
michael_s's Avatar
osCMax Developer

 
Join Date: Jul 2002
Location: Phoenix, AZ
Posts: 10,247
Thanks: 66
Thanked 294 Times in 280 Posts
Rep Power: 10
michael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond repute
Default Re: Let\'s See What We Have Here instead of Category Name

Quote:
tha file index_products.tpl.php was only in fallback template
That is the only place it needs to be. All templates pull the content files from fallback if there is not one in its own content directory. If the code is there, then you simply have not entered in the info in the admin panel, or you have not turned on Category descriptions in the admin panel.

The problem is not with osCMax. If you don't have Category Heading Title filled in in the admin panel for that category, it will display the default 'Lets see...' text.

Is the template you purchased specifically for osCMax or osCommerce standard? If it is for osCommerce, it will not work with osCMax without converting it to use the BTS template format.
__________________
Michael Sasek
osCMax Developer


osCMax Templates - Hundreds of premium quality templates. New designs every month!

xShop for osCMax - Windows Based osCMax administration. Improved workflow, security, speed and convenience


osCMax Hosting - From basic hosting to High Availability, Load Balanced arrays, the most experienced osCMax host.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following User Says Thank You to michael_s For This Useful Post:
yulises (04-20-2008)
  #8  
Old 04-20-2008, 08:47 PM
Member
 
Join Date: Mar 2007
Posts: 47
Thanks: 2
Thanked 0 Times in 0 Posts
Rep Power: 0
yulises is on a distinguished road
Default Re: Let\'s See What We Have Here instead of Category Name

Thank you ,

My mistake , I just notice that the categorie heading title in the admin was blank,
sorry for all the trouble i made...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9  
Old 05-03-2008, 01:12 PM
New Member
 
Join Date: Mar 2008
Posts: 29
Thanks: 0
Thanked 2 Times in 2 Posts
Rep Power: 0
jack_strit is on a distinguished road
Default Re: Let\'s See What We Have Here instead of Category Name

Hi, I had this problem too...and I figured out the same thing. I always try to remember that by far the largest number of computer issues are USER ERROR (in other words, its my fault, not the PC) Computers can be so humbling.

J
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
Specials & Products_new sort category & sub-category dropdown menu michael_s New osCommerce Contributions 0 03-02-2008 10:23 PM
Category name listed twice for each category seanloughry osCMax v2 Customization/Mods 0 11-02-2007 08:00 AM
Adding Category Descriptions in Category List for each Cat. el1jones osCMax v2 Customization/Mods 1 03-15-2006 01:37 AM
Category name damnedpig osCMax v1.7 Discussion 8 06-11-2004 11:32 AM
New category does not create new category folder Anonymous osCommerce 2.2 Installation Help 3 02-23-2003 12:52 PM


All times are GMT -8. The time now is 09:39 PM.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO
Copyright 2008 osCMax