XF 2.0 Edit template modification - Simple replacement

eTiKeT™

Well-known member
Hello
I'm trying to write a new plugin. I did however encounter a problem

The code I want to change
Code:
        <xf:if contentcheck="true">
            <div class="p-footer-copyright">
            <xf:contentcheck>
                <xf:copyright />
                {{ phrase('extra_copyright') }}
            </xf:contentcheck>
            </div>
        </xf:if>
But before that, a different plugin changed these codes. Because of this change, it can not find the codes and make the change.
My plugin is working when I close the plugin that makes the change.
What kind of action do I have to do now?
 
Last edited:
Look at the Execution order value for the plugin that modified this code and set your own template modification's execution order to a value smaller than that used by the plugin... assuming that the plugin modified the code using a template modification...
 
Top Bottom