layered-navigation

Magento Layered Navigation block. Move to center

 ̄綄美尐妖づ 提交于 2019-12-08 00:18:25
In category.xml I'm changing the reference name in: <reference name="left"> <block type="catalog/layer_view" name="catalog.leftnav" before="-" template="catalog/layer/view.phtml"/> </reference> To content which I assumed would place the layered nav into the center. However, it still stays on the left. In fact, even I changed left to right , and it still doesn't move from the left sidebar. What am I doing wrong here? I managed to fix this (for anyone else who encounters this problem) by commenting out or deleting the below call in catelog.xml : <reference name="left"> <block type="catalog/layer

Multiple Layers of Deep Linking in AngularJS

大兔子大兔子 提交于 2019-12-06 09:05:57
I am attempting to place multiple controllers within my template partials with AngularJS- The problem I am encountering is that of the first layer, direct-linking to these sub-controllers and their related snippets. An example would be a management page for user accounts, say I am on a user-list and wanted to change a user from the list's password, I click on their change-password button, and want to redirect the user to #/ManageUsers/ChangePassword/?UserID=<uid here> rather than #/ManageUsers_ChangePassword/ or similar, but the Angular documentation (Or lack thereof) on the subject suggests

Price Ranges in Magento

和自甴很熟 提交于 2019-12-04 19:37:27
问题 By default the layered navigation in Magento shows me in the price attribute From 0 to 1000 From 1001 to 2000 etc, etc. Is it possible to change this either by configuration or by code? If it has to be by code can you please provide code example and which file(s) do I need to modify. 回答1: Go to System > Configuration > Catalog > "Layered navigation" section > "Price Navigation Step Calculation" set " Price Navigation Step Calculation " to Manual and change the settings that appear. " Default

How can I implement stock filter in Magento way?

社会主义新天地 提交于 2019-12-04 19:01:19
Out of stock products are visible in my magento website. I want a custom filter in the layered navigation which would say "Exclude out of stock" and when customer clicks on it the out of stock products should be hidden. (by default I enable showing/displaying out of stock products under System-> Configuration-> CATALOG-> Inventory) i.e. I want the customer to control whether he/she should see the "out of stock" products or not. example this link can anyone help please? I want this to be done in magento way... Chirag Nandaniya this is the development work. you need to hire some one. basically

Magento, custom product list

非 Y 不嫁゛ 提交于 2019-12-04 12:27:00
问题 I made my own product list page based on Mage_Catalog_Block_Product_List: app/code/local/Mage/Catalog/Block/Product/Special.php: class Mage_Catalog_Block_Product_Special extends Mage_Catalog_Block_Product_List { /* Original contents */ /* Here I call addAttributeToFilter on product collection, and then... */ return $this->_productCollection; } I include this in a CMS page on the center column: <reference name="content"> <block type="catalog/product_special" template="catalog/product/list

Magento, custom product list

偶尔善良 提交于 2019-12-03 08:20:51
I made my own product list page based on Mage_Catalog_Block_Product_List: app/code/local/Mage/Catalog/Block/Product/Special.php: class Mage_Catalog_Block_Product_Special extends Mage_Catalog_Block_Product_List { /* Original contents */ /* Here I call addAttributeToFilter on product collection, and then... */ return $this->_productCollection; } I include this in a CMS page on the center column: <reference name="content"> <block type="catalog/product_special" template="catalog/product/list.phtml" /> </reference> The problem is: The product list shows up just fine, but I get no layered navigation

Magento - Layered navigation, configurable products, multiple filters active issue

白昼怎懂夜的黑 提交于 2019-11-30 05:07:59
Say I have a single configurable product in a Magento (1.7) store, "T-Shirt-A" which comes in Red (sizes 1,2) and Black (size 2). In the layered navigation if I select "Black" and "size 1" I WANT to see no results - because there are no simple products that are available in "Black" AND "size 1". INSTEAD I SEE "T-Shirt-A" because it comes in Black and in Size 1 (but, no associated simple product meets both criteria) What can I do to achieve the search results I want (have the filters show the configurable products which have at least one associated simple product that meets ALL filtered

Magento - Layered navigation, configurable products, multiple filters active issue

自古美人都是妖i 提交于 2019-11-29 03:03:27
问题 Say I have a single configurable product in a Magento (1.7) store, "T-Shirt-A" which comes in Red (sizes 1,2) and Black (size 2). In the layered navigation if I select "Black" and "size 1" I WANT to see no results - because there are no simple products that are available in "Black" AND "size 1". INSTEAD I SEE "T-Shirt-A" because it comes in Black and in Size 1 (but, no associated simple product meets both criteria) What can I do to achieve the search results I want (have the filters show the

Faceted Search (solr) vs Good old filtering via PHP?

我与影子孤独终老i 提交于 2019-11-28 15:29:10
I am planning on setting up a filter system (refine your search) in my ecommerce stores. You can see an example here: http://www.bettymills.com/shop/product/find/Air+and+HVAC+Filters Platforms such as PrestaShop, OpenCart and Magento have what's called a Layered Navigation. My question is what is the difference between the Layered Navigation in platforms such as Magento or PrestaShop in comparison to using something like Solr or Lucene for faceted navigation. Can a similar result be accomplished via just php and mysql? A detailed explanation is much appreciated. Layered Navigation == Faceted

Faceted Search (solr) vs Good old filtering via PHP?

有些话、适合烂在心里 提交于 2019-11-27 09:14:24
问题 I am planning on setting up a filter system (refine your search) in my ecommerce stores. You can see an example here: http://www.bettymills.com/shop/product/find/Air+and+HVAC+Filters Platforms such as PrestaShop, OpenCart and Magento have what's called a Layered Navigation. My question is what is the difference between the Layered Navigation in platforms such as Magento or PrestaShop in comparison to using something like Solr or Lucene for faceted navigation. Can a similar result be