简体   繁体   English

Magento-1.13中的Seo分层导航插件问题

[英]Magento - Seo Layered Navigation Plugin Issue in 1.13

We've recently upgraded to 1.13 on our site and the only plugin that does not seem to work is the "Seo Layered Navigation" by "Ecommerce Team". 我们最近在我们的网站上将其升级到1.13,唯一似乎不起作用的插件是“电子商务团队”的“ Seo分层导航”。 I have contacted their team, but they do not support 1.13 yet. 我已经联系了他们的团队,但是他们还不支持1.13。 Everything in the plugin works great, except for the actual ajax calls for filtered results. 插件中的所有内容都很好用,除了实际的ajax调用以获取过滤结果。 The "is_ajax" component does not seemed to be picked up for any reason. 似乎由于任何原因都没有拾取“ is_ajax”组件。

site.com/catename/filter/manufacturer/manuwesearchingfor?is_ajax=1 always returns a 404 error. site.com/catename/filter/manufacturer/manuwesearchingfor?is_ajax=1始终返回404错误。

The observer for ajax is not being executed for some reason. 由于某种原因,没有执行ajax的观察者。 In the config.xml of the plugin we have: 在插件的config.xml中,我们有:

 <frontend>
    <events>
        <controller_action_layout_generate_blocks_after>
        <observers>
            <setfilterspagetitle>
            <type>singleton</type>
            <class>ecommerceteam_sln/observer</class>
            <method>setPageTitle</method>
            </setfilterspagetitle>
        </observers>
        </controller_action_layout_generate_blocks_after>
        <controller_action_layout_render_before_catalog_category_view>
        <observers>
            <init_ajax_request>
            <type>singleton</type>
            <class>ecommerceteam_sln/observer</class>
            <method>initAjax</method>
            </init_ajax_request>
        </observers>
        </controller_action_layout_render_before_catalog_category_view>
        <controller_action_layout_render_before_catalogsearch_result_index>
        <observers>
            <init_ajax_request>
            <type>singleton</type>
            <class>ecommerceteam_sln/observer</class>
            <method>initAjax</method>
            </init_ajax_request>
        </observers>
        </controller_action_layout_render_before_catalogsearch_result_index>
    </events>

I cannot find any documentation on why the change from 1.12 to 1.13 would have removed one of these observers. 我找不到任何文档说明为什么从1.12更改为1.13会删除这些观察者之一。

Issue was the new redirect engine in Magento EE. 问题是Magento EE中的新重定向引擎。 The "Ecommerce Team" was awesome and had a fix in a day! “电子商务团队”很棒,一天之内就解决了!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM