I'm using Magento 1.9.1.0 and have configurable swatches working on category, and product view pages.
I'm attempting to create a custom 'Shop' page which lists all products (store has only +/-20), and shows the configurable swatches below the products.
I'm able to create the Shop page which lists all products a number of ways .. Either through CMS, local.xml, or using a controller, etc ... no problems there.
Here is the local.xml example. *I have the appropriate routes setup, and the Default Category set to "Is Anchor".
<mystore_site_index_shop>
<reference name="content">
<block type="catalog/product_list" name="product_list" template="catalog/product/list.phtml">
<block type="core/text_list" name="product_list.name.after" as="name.after" />
<block type="core/text_list" name="product_list.after" as="after" />
<block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
<block type="page/html_pager" name="product_list_toolbar_pager"/>
</block>
</block>
</reference>
</mystore_site_index_shop>
I've also added the page reference to the page in configurableswatches.xml
<mystore_site_index_shop>
<update handle="product_list"/>
</mystore_site_index_shop>
which loads the appropriate .js files to the page ... however no swatches are shown.
Does anybody have any advice on how I can accomplish this? I must be missing something obvious here ..
Thanks!