PDA

View Full Version : Creating widget or sidebar blocks?


qpurser
11-14-2011, 10:19 AM
I found some coding I would like to use in a widget or sidebar block.
They were in the "Style Manager" -> "vBulletin CMS templates".
For example this one:
vbcms_widget_myfriends_page
code:
<div class="cms_widget">
<div class="block">
<div class="cms_widget_header widget_header">
<h3>{vb:rawphrase friend_activity}</h3>
</div>
<div class="cms_widget_content widget_content">
{vb:raw friends_html}
</div>
</div>
</div>

How can I make this work as a widget or sidebar block?

Thanks for any help
Michael

Lynne
11-14-2011, 09:15 PM
Before you can just add that code, you need to write the code to define the variable $friends_html. So, you need to search through the php files and find where that gets defined and get the code from there to put into your block or widget.