The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Hook for custom block in UserCP
Hello,
I'm trying to add a custom block with menu options in usercp, but I can't find the right hook name to show it as seperate block (if possible first, or under PMs). The only that I succeeded to do, as you can see in the attached screenshot, is to add it at the bottom of the block My Setting. Thank you C.T |
#2
|
|||
|
|||
Try this and place it accordingly in your USERCP_SHELL template.
HTML Code:
<div class="block"> <h2 class="blockhead">Your Custom Block title</h2> <div class="blockbody"> {vb:raw template_hook.usercp_navbar_miscellaneous}</div> </div> |
#3
|
|||
|
|||
Quote:
|
#4
|
|||
|
|||
Quote:
P.S.: If you find documentation on how to create your own hook please share |
#5
|
|||
|
|||
1. Open Template USERCP_SHELL and choose any hook which u want.
for ex: Code:
usercp_navbar_myaccount 2. Create New Plugin Plugin Hook: usercp_nav_complete Title: Ur wish Code Code:
$template_hook['usercp_navbar_myaccount'] .= vB_Template::create('mytemplate')->render(); and save the plugin. (don't forget to select yes) |
#6
|
|||
|
|||
Quote:
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> C.T. |
#7
|
|||
|
|||
Quote:
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> At Top add this Code:
</ul></div> </div> After This U can create ur block and note at last don't add Code:
</ul></div> </div> |
Благодарность от: | ||
EquinoxWorld |
#8
|
|||
|
|||
Quote:
Thank you |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|