Magento Layered Navigation Categories [closed] - magento

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I would like the user to be sent to the category landing page when the user clicks the category in layered navigation.
So instead of the user getting /category.html?cat=11, they would get /category/RedWidget.html?cat=11 when they click the RedWidget category.
I found this link, but his code doesn't work.
Thanks ahead of time!

If I understand you correctly, I came across a similar problem.
My eventual fix was to display both the left.phtml and layered navigation at the same time, then hide the category in layered navigation.
(if($showBlock && $this->__($_filter->getName()) != "Category"):)
Then in left.phtml I parsed the $_GET variable and appended it to the end of the URL string for each category, ensuring that the layered navigation search terms persisted between categories.
Slightly dirty but it does the job.

Category landing pages are usually defined in the same place where you created the category. Set the display mode to CMS block or CMS block + products and you should see your content displayed for the user.
If this isn't what you are expecting, please elaborate on what you are using as a "category landing page".

Related

In magento i need to display a logo image in selected product page [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
In magento i need to display a logo image in product page and have to restrict its display for certain products using attribute from admin.
Create one attribute [Ex-logo display?]with drop-down and assign to attribute set
set option value yes and no and go to the manage product and set to yes in product to
display logo
and in view.phtml put condition $_product->getData('logo_display')==1 **then display
your logo image**
otherwise not

Magento quick search not returning all returning all products [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I've searched a keyword e.g "smartwash" there supposed to be 2 items but it's showing 1 items only but the count on the toolbar is right. My magento version is 1.4.2
Thanks
Several things to check:
Does the product's visibility allow it to be visible in search?
Is the product enabled?
Is the product in stock (Or are out of stock items set to be viewable)?
Does the product have a price and tax options?
If it's configurable or bundle, does it have child products/options that are in stock/enabled?
Have you reindex the Catalog Search Index?
Have you cleared the Page and Block caches?
Fixed it! I added this code on the start of my result.phtml :
$_productCollection=$this->_getProductCollection()

Feature an article on news page in Joomla [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
This might be a really simple question and I apologise if it has been asked before.
I I'm creating a website for a school with Joomla 2.5 and I want the homepage to be a blog list of the latest news. Just above the news blog I am trying to insert a featured article to introduce the school
My problem is that I can insert the featured article by setting the homepage as featured article list and I can make the news feed by setting the homepage as a blog list. I however do not know how to set both at once
Thank you in advance
Set the homepage as a blog list (configure your menu item as you probably already did according to your question) and insert the featured article creating an Articles Category module, in the settings of the module:
Go to filtering options (right side) and choose in Featured articles Only.
Still there, type 1 in the Count box.
Select the category that the article belongs to.
Assign the module to be shown only in the homepage.
Assign a position to the module above the main content (the blog list).
From what I understand you are trying to display a specific piece of content belonging to that category on top of the rest of the articles ...
You should do this simply by inserting this article as a description for this category.
Open the category, on the description insert the content as if it's an article then on the menu link make sure you are showing the category description ... this way the article will always be on top doesn't matter if any article is inserted. If that's not what you meant to do please update your question.

Magento backend - manage products - move qty field in the general tab [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I would like to know if there is a way in Magento (1.5) to move the qty field from backend catalog/manage products/inventory tab to catalog/manage products/general tab.
Thank you by advance.
Zard, the stock information is not exactly part of the Product, but from the ProductStock. So, you cannot reorder the fields using the Attribute Set Manager.
In order to do what you want, you are going to need to add some code (to hide the field in the inventory tab, and to show it in the general tab). If you keep the input's name, then the controller should just handle the data.

change Product Detail page in magento? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I want functionality of my product detail page like :
http://en.edelices.com/foies-gras-truffles/goose-foie-gras/millefeuille-whole-goose-foie-gras-truffles-fresh.html.
I have done other part but. how to add product in different Weight with different image and when select radio button change the image of product.
Thanks.
Create each product as a configurable and several simple products. Each simple product can have it's own price, weight and image. Use an extension to dynamically switch images between those simple ones.

Resources