Chat Room Article Base Facebook Page Twitter RSS Feed
Welcome, Guest. Please login or register.
Did you miss your activation email?
May 24, 2012, 12:19:31 PM

Login with username, password and session length
Search:     Advanced search
The E-commerce forum, the best place for advice for your Small Business.
12794 Posts in 1521 Topics by 6461 Members
Latest Member: egrovesystems
* Home Help Search Login Register
+  E-commerce forum
|-+  E-commerce
| |-+  Shopping cart software
| | |-+  Zen cart
| | | |-+  Categorie Subs
« previous next »
Pages: [1] 2 Print
Author Topic: Categorie Subs  (Read 956 times)
carlberry64
Settling In
**

Karma: 0
Offline Offline

Posts: 36


« on: November 01, 2010, 08:46:05 PM »

hi
i use to have the sub categories at the top of the main page section with an image, but notised today it is not showing anymoor.
is there somewhere this gets switched on and off and i have somehow switched it off ?
can anyone help please

carl
Logged
Rainee Bows
hobnob keeper
Shareholder ;o)
*****

Karma: 19
Offline Offline

Gender: Female
Posts: 943


Currently Online: 109 visitors - 21 Members.


WWW
« Reply #1 on: November 02, 2010, 12:55:58 PM »

configuration >layout settings >Categories - Always Show on Main Page ........

set to 1 to switch back on


Rain
xxxx
Logged

If you want the Rainbow,you have to put up with a little Rain
Facebook Articles
Graphic & Web Design Services
Business Network
carlberry64
Settling In
**

Karma: 0
Offline Offline

Posts: 36


« Reply #2 on: November 02, 2010, 05:52:57 PM »

configuration >layout settings >Categories - Always Show on Main Page ........

set to 1 to switch back on


Rain
xxxx

hi
its already set on 1
any other ideas, anyone know what page/file it is in as might have done someting to it.

Logged
seamus
zen master
Shareholder ;o)
*****

Karma: 44
Offline Offline

Gender: Male
Posts: 1109



WWW
« Reply #3 on: November 02, 2010, 09:12:30 PM »

what files have you edited? if its set to show in admin and nothing is there, then the call for the categories must have been removed at some point from the page template.

its a bit hard to know whats wrong without knowing abit more about the problem,
what was it you had showing, was it the categories on the main page centre content or is it the category tabs menu under the header?

the settings rain-bow pointed you to will control the categories on the main page centre content,
if its the category tab menu then its
admin>configuration>layout settings>Categories-Tabs Menu ON/OFF
Logged

carlberry64
Settling In
**

Karma: 0
Offline Offline

Posts: 36


« Reply #4 on: November 03, 2010, 06:40:37 AM »

what files have you edited? if its set to show in admin and nothing is there, then the call for the categories must have been removed at some point from the page template.

its a bit hard to know whats wrong without knowing abit more about the problem,
what was it you had showing, was it the categories on the main page centre content or is it the category tabs menu under the header?

the settings rain-bow pointed you to will control the categories on the main page centre content,
if its the category tab menu then its
admin>configuration>layout settings>Categories-Tabs Menu ON/OFF

hi seamus

its the sub categorie in the centre when you select a categorie from left hand colum that has subcategories it use to show all the subs cats in the main area at the top with image icons
now they have gone.

i have checked and cant find how to get them back
the website is http://silverline-computers.co.uk/ 
if you want to look

cheers carl

Logged
seamus
zen master
Shareholder ;o)
*****

Karma: 44
Offline Offline

Gender: Male
Posts: 1109



WWW
« Reply #5 on: November 03, 2010, 03:22:23 PM »

right, I see what you mean,

admin>configuration>Product Listings>Show SubCategories on Main Page while navigating
and set to 1 and the subcategories will show up when browsing a category,

 great
Logged

carlberry64
Settling In
**

Karma: 0
Offline Offline

Posts: 36


« Reply #6 on: November 03, 2010, 06:02:45 PM »

right, I see what you mean,

admin>configuration>Product Listings>Show SubCategories on Main Page while navigating
and set to 1 and the subcategories will show up when browsing a category,

 great


thanks for that
but already set as you mentioned.
what i have noticed is if you go on say memory in the categories and there are 3 sub cats.
the sub cats show when clicked on them but not in the main page when just clicking the categorie on the left.
any other ideas ?   what  .php would this be on incase i have done something.

Logged
seamus
zen master
Shareholder ;o)
*****

Karma: 44
Offline Offline

Gender: Male
Posts: 1109



WWW
« Reply #7 on: November 03, 2010, 06:54:22 PM »

look for this code here
Code:
<!-- BOF: Display grid of available sub-categories, if any -->
<?php
  
if (PRODUCT_LIST_CATEGORY_ROW_STATUS == 0) {
    
// do nothing
  
} else {
    
// display subcategories
/**
 * require the code to display the sub-categories-grid, if any exist
 */
   
require($template->get_template_dir('tpl_modules_category_row.php',DIR_WS_TEMPLATE$current_page_base,'templates'). '/tpl_modules_category_row.php');
  }
?>

<!-- EOF: Display grid of available sub-categories -->

that should be in
/includes/templates/Slovak_Classic/templates/tpl_index_categories.php
the chances are that code isnt there in your file, hence why its not showing the subcategories, why that bit of code would have been removed is anybodys guess
if the code is there, then there must be a problem with it, its been altered and bits have been left out,

if your template doesnt have a tpl_index_categories.php file then it'll be the file in /includes/templates/template_default/templates/ thats getting used.

or

if the above file is fine, check /includes/templates/Slovak_Classic/templates/tpl_modules_category_row.php
it should look like this

Code:
require(DIR_WS_MODULES . zen_get_module_directory('category_row.php'));

  require($template->get_template_dir('tpl_columnar_display.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_columnar_display.php');

if that code is missing or not written properly, it can cause the subcategories to disappear

if those files are fine, then I'd need a look through your site to see what has been done and what isnt working, guessing at where the problem really isnt the best way to do things, I'd need to have a look, but working on other people sites is never done for free


edit to add,

just checked your source code

Code:
<!-- BOF: Display grid of available sub-categories, if any -->
<!-- EOF: Display grid of available sub-categories -->

theres no code inbetween the begining of and the end of your subcategory display code, so the first code I put up should be in there, so it definetly is /includes/templates/Slovak_Classic/templates/tpl_index_categories.php thats got the problems

why did you remove the code??
« Last Edit: November 03, 2010, 07:15:29 PM by seamus » Logged

carlberry64
Settling In
**

Karma: 0
Offline Offline

Posts: 36


« Reply #8 on: November 03, 2010, 09:17:29 PM »



just checked your source code

Code:
<!-- BOF: Display grid of available sub-categories, if any -->
<!-- EOF: Display grid of available sub-categories -->

theres no code inbetween the begining of and the end of your subcategory display code, so the first code I put up should be in there, so it definetly is /includes/templates/Slovak_Classic/templates/tpl_index_categories.php thats got the problems

why did you remove the code??

hi seamus
i have not edited or removed the code.  also i have tried uploading the origanals and it is still the same.
its weared as it was working, dont know what code changed on what page, i will try updateing with origianal then adding pages to see which is causing problem
Logged
carlberry64
Settling In
**

Karma: 0
Offline Offline

Posts: 36


« Reply #9 on: November 03, 2010, 09:36:39 PM »

hi seamus
ok your the wizz it was the
/includes/templates/Slovak_Classic/templates/tpl_modules_category_row.php

dont know how code was removed or why
i replaced with the origianal copy and bingo
job done.
thanks for your help on this one. your a  angel    great great
Logged
seamus
zen master
Shareholder ;o)
*****

Karma: 44
Offline Offline

Gender: Male
Posts: 1109



WWW
« Reply #10 on: November 03, 2010, 09:42:52 PM »

no probs  thumbs up
Logged

carlberry64
Settling In
**

Karma: 0
Offline Offline

Posts: 36


« Reply #11 on: November 03, 2010, 10:07:05 PM »

hi seamus
is there any way of removeing the subs from the main page but display the sub cats on the main page.
i think this is what i might have done few days ago removed the said from the tpl_modules_category_row.php
any ideas?
carl
Logged
Rainee Bows
hobnob keeper
Shareholder ;o)
*****

Karma: 19
Offline Offline

Gender: Female
Posts: 943


Currently Online: 109 visitors - 21 Members.


WWW
« Reply #12 on: November 03, 2010, 10:18:04 PM »

hi seamus
is there any way of removeing the subs from the main page but display the sub cats on the main page.
i think this is what i might have done few days ago removed the said from the tpl_modules_category_row.php
any ideas?
carl

eh ?

thats going to need some explaining ..... you want to remove them AND display them on the main page ?

now i know im easily foozled ......

but that makes no sense

Rain
xxxx
Logged

If you want the Rainbow,you have to put up with a little Rain
Facebook Articles
Graphic & Web Design Services
Business Network
carlberry64
Settling In
**

Karma: 0
Offline Offline

Posts: 36


« Reply #13 on: November 03, 2010, 10:28:00 PM »

hi
i dont want the categories to be displayed in main page,
but when you select a categorie from the left i want the sub categories to then display in the main page.

if that makes sence Rain
Logged
seamus
zen master
Shareholder ;o)
*****

Karma: 44
Offline Offline

Gender: Male
Posts: 1109



WWW
« Reply #14 on: November 03, 2010, 11:40:02 PM »

well, your site as it is, doesnt show the categories on the main page, its showing the new products box and specials box,
to sort that to show what you want is just a matter of tweaking the setting in admin,

admin>configuration>index listings
and just set what you want to show and turn off what you dont.
you can turn off everything so that the only thing that shows on the main page is what ever you put in your define pages for that page, no need to remove any code, you can do pretty much all of what you need to do by sorting the settings properly via admin.

Logged

Pages: [1] 2 Print 
« previous next »
Jump to:  


Powered by MySQL Powered by PHP Powered by SMF 1.1.15 | SMF © 2011, Simple Machines Valid XHTML 1.0! Valid CSS!
SimplePortal 2.2.2 © 2008-2009