conflicting two magento extension

瘦欲@ 提交于 2019-12-01 12:54:23

This is the same issue which i faced ,Currently you are adding before tag only in one extension so remove this line.

<before>fee</before>

you have to set the after and before tag in both of the extension.

In Extension A Config.xml file use this

<after>subtotal,discount,shipping</after> 
<before>tax,grand_total</before> 

and in your Extension B Config.xml file use this

<after>fee</after> 
<before>tax,grand_total</before> 

Hope this will help yours

Alex

The sort algorithm used by Magento is not stable and can lead to wrong results. You can use this patch: https://stackoverflow.com/a/11954867/288568

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!