How to edit the view of showing products in Zen Cart? - zen-cart

I have a category of products named "Fashion & Jewellery,Bag" and it has two sub categories "For Man" and "For woman" and these two sub categories also have some sub categories.
http://24sevensale.com.au/index.php?main_page=index&cPath=66
Now I want to do to view the sub categories of Man and Woman in a same page and the sub catagories of Man and Woman will be only hyperlinked.
How can I implement that?

You will need to create one or more customized pages as the product category pages display one category per page. Zen cart has a override system that allows customization outside of the core files which you would want to use so that you can update the core if needed without overwriting your customizations. It's described here: http://www.zen-cart.com/content.php?228-understanding-the-override-system

Related

How to display categories listing in product listing page vuestorefront?

I am working on vuestorefront with magento 2.
In vuestorefront I am using vuetique theme.
I want to display category listing in layered navigation section on vuestorefront. Same as magento 2 layered navigation.
Please check below two attached screenshot.
vuestorefront screenshot
The simplest solution is to add categoryIds to defaultFilters section of your config file, if that doesn't work create one custom attribute(must be of type int or keyword in ES) in magento and use that(Add that to defaultFilters instead).

tt_news No categories when creating news

When I create a new article in the News administration of tt_news in Typo3 6.2, I am not able to select any categories in the "Options" window of the news, as there are none listed. But I have categories created and I can assign already existing new to categories, if I select it in the "Items" window of the category itself.
In image 1 you can see there are no categories listed, when creating or editing news entries, although there are some.
When I try to assign news to a category in the list module (opening the category and assigning a news item to it via "Items" section) it works, as you can see in image 2.
I have looked up if I need to specify for tt_news where the categories are stored, but I have not been able to find anything and I cannot remember doing so in the past (for other pages). Did I miss anything?
Did you figure it out ...?
To me it looks like you confused the tt_news categories, they would not show in the tab in image 1 ...
You'd edit this selecting the folder where your news is stored, selecting the article you'd like to assign to a category and then the 'Categories & Relations' tab ...

Display category and its content in TYPO3

I am using TYPO3 6.2.9 CMS.I make category and assigned to page.But I don't know how to display the category when i am showing the page i want all the category assign to that page must display then after clicking that category the content which i have assign to that category must display
There is no out-of-the box solution for this.
But you can use the following :
Or create your own extension where you gather the categories of your page and render them on your page. You then can also create a sort of category menu.
You can use category collection :
http://docs.typo3.org/typo3cms/CoreApiReference/ApiOverview/Categories/Index.html
cObject RECORDS has also a categories property, so you could also use typoscript for rendering.
For this purpose you can use extensions to your website.
Catalogue extension package
Which relates to categorisers and if you want to you can customize it in your own manner.
Use of these extensions make simple in listing category.
The usage is also given in its manual ans its simple to adopt it.

Add sort by category in product listing Magento

I've tried to find a possible solution for this but without any result I need to display a sort by category field in the default Magento toolbar in product listing page. Does anyone know how to add this feature without messing up my core files?
What you looking for is something Magento calls Layered Navigation.
First you must make a parant category Apparel and one (ore more) child categories, for example:
- shirts
- shoes
- hoodies
Then for all the child categories go to the admin back-end and navigate to:
Catalog -> Manage Categories -> Display settings.
Now make sure you set the field "Is Anchor" to yes.
Apply this setting for all the children categories.
After these steps your front-end product-listing should look like:
http://demo.magentocommerce.com/catalog/category/view/s/apparel/id/18/
At the left sidebar you can see the categories that are children of the parent category Apparel. Of course you can use your own names for the diffrent categories.
Cheers.

tt_news: List of categors with link

I have a LIST VIEW in tt_news. I want to display a list of all the categories each entry belongs to, like this:
"TITLE OF NEWS
Sports, Travel, Photos"
so that each category name links to the view of all news from that category, like the CATMENU.
How could I do it? Im using genericmarkers for tt_news to add custom objects
Use the extraItemMarkerProcessor we were talking about before and insert new marker ie. ###ITEM_CATEGORIES###. Then you can use some kind of loop for every category to build link with and pass it to the marker as a list of coma-separated links:
$pObj->cObj->typolink($catName, $catLinkConfArray);
Building links with typolink is documented in TSref