Quote:
Originally Posted by Dismounted
Hmm. Use your one, but add a plugin at postbit_display_start with this:
PHP Code:
unset($template_hook['postbit_user_popup']);
Make sure the execution order is 1.
|
Dismounted, you edited your post while I was writing an answer for you
The answer for "old" post:
I have replaced text:
Test Phrase
with text:
Test Phrase - PostID $post[postid] - Postcount $post[postcount]
in my first post:
https://vborg.vbsupport.ru/showthread.php?t=150769
And I reuploaded the screenshot also.
So you will understand now clearly
But!!!
Here is the answer for "new" post:
I added a line you said me to my code and now it looks like:
HTML Code:
<plugin active="1" executionorder="5">
<title>Test (1)</title>
<hookname>postbit_display_complete</hookname>
<phpcode><![CDATA[
unset($template_hook['postbit_user_popup']);
eval('$template_hook[postbit_user_popup] .= "' . fetch_template('test') . '";');
]]>
</phpcode>
</plugin>
And it is working now
P.S. Realy I had a thought to destroy the specified variable but...
Thanks,
Dismounted!
I am very happy I now know this little tip now!
P.S.S.
Oh...
I remade the code 100% the way you said...
HTML Code:
<plugin active="1" executionorder="1">
<title>Test (0)</title>
<hookname>postbit_display_complete</hookname>
<phpcode><![CDATA[
unset($template_hook['postbit_user_popup']);
]]></phpcode>
</plugin>
<plugin active="1" executionorder="5">
<title>Test (1)</title>
<hookname>postbit_display_complete</hookname>
<phpcode><![CDATA[
eval('$template_hook[postbit_user_popup] .= "' . fetch_template('test') . '";');
]]>
</phpcode>
</plugin>
Am I right to your words?
Because both variants work there