PDA

View Full Version : Few more questions...


XxBuLLeTz
04-15-2008, 09:03 PM
hey don't have much time so this will be quick.

1) I have the forms hack and am making an add-on. Is there any way i can make a rich text field preferably without installing another hack?

2) I'm struggling with this:
$navbits[$parent] = 'whatever';


I want something like:
Forums
- Parent
-- Subcat
--- subsubCat

how would this be done?

thanks,
-bulletz

Marco van Herwaarden
04-16-2008, 08:51 AM
If you have questions/problems with a modification or style, then please post in the thread (or support forum/board) about that modification/style. Best chance to receive a reply from either the author or another member using the same modification/style.

XxBuLLeTz
04-16-2008, 12:38 PM
ok but what about question 2?

Dismounted
04-16-2008, 12:55 PM
$navbits = array_merge($navbits, array(
'Parent',
'Subcat',
'http://www.google.com/' => 'Subsubcat'
));

XxBuLLeTz
04-16-2008, 02:00 PM
thanks!