Quote:
Originally Posted by Mr.Classifieds
Thank you for answering but this is something that I already did, but is not what I want. All the hooks in the template USERCP_SHELL are reffering to add data within the "My Settings" block, while I want a seperate block. My current plugin is:
Code:
<plugin active="1" executionorder="40">
<title>Classifieds: User CP Navbar Link</title>
<hookname>usercp_nav_complete</hookname>
<phpcode><![CDATA[
$template_hook['usercp_navbar_bottom'] .= vB_Template::create('microclassifieds_usercp_links')->render();
]]></phpcode>
</plugin>
This add my block at the end of My Settings. I know that by changing the hook name I can move it up, but still will be inside My Settings block.
C.T.
|
ya thats simple.
Have this plugin which u created
Code:
<plugin active="1" executionorder="40">
<title>Classifieds: User CP Navbar Link</title>
<hookname>usercp_nav_complete</hookname>
<phpcode><![CDATA[
$template_hook['usercp_navbar_bottom'] .= vB_Template::create('microclassifieds_usercp_links')->render();
]]></phpcode>
</plugin>
Now Open Template
microclassifieds_usercp_links
At
Top add this
After This U can create ur block and
note at last don't add
as it is already there in USERCP_SHELL