Table BBCode »  Show posts from    to     

Icy Phoenix


Old Support Topics - Table BBCode



carmelomvp [ Tue 28 Aug, 2007 11:32 ]
Post subject: Table BBCode
There are a bbcode to Icyphoenix to add tables in my forum?

Thanks!


Mighty Gorgon [ Wed 29 Aug, 2007 01:07 ]
Post subject: Re: Table BBCode
You can enable them by enabling html, add table tags in allowed tags in ACP end edit bbcode.php.

Otherwise you may use these classes:
http://www.icyphoenix.com/viewtopic.php?t=1758

Or you can create CMS blocks using pure HTML.


carmelomvp [ Wed 29 Aug, 2007 11:30 ]
Post subject: Re: Table BBCode
Mighty Gorgon wrote: [View Post]
You can enable them by enabling html, add table tags in allowed tags in ACP end edit bbcode.php.

Otherwise you may use these classes:
http://www.icyphoenix.com/viewtopic.php?t=1758

Or you can create CMS blocks using pure HTML.


Ok how can i do this?I know how enable the html but how can i add the html in the bbcode.php?

Thanks!


Zuker [ Thu 30 Aug, 2007 02:30 ]
Post subject: Re: Table BBCode
search for the table tags in bbcode.php and decoment them

for ex.

Code: [Hide]
  1. /*  
  2. 'table' => array(  
  3. 'nested' => true,  
  4. 'inurl' => true,  
  5. 'allow_empty' => false,  
  6. ),  
  7. */  
  8. /*  
  9. 'tr' => array(  
  10. 'nested' => true,  
  11. 'inurl' => true,  
  12. 'allow_empty' => false,  
  13. ),  
  14. 'td' => array(  
  15. 'nested' => true,  
  16. 'inurl' => true,  
  17. 'allow_empty' => false,  
  18. ),  
  19. */ 


should be

Code: [Hide]
  1. 'table' => array(  
  2. 'nested' => true,  
  3. 'inurl' => true,  
  4. 'allow_empty' => false,  
  5. ),  
  6. 'tr' => array(  
  7. 'nested' => true,  
  8. 'inurl' => true,  
  9. 'allow_empty' => false,  
  10. ),  
  11. 'td' => array(  
  12. 'nested' => true,  
  13. 'inurl' => true,  
  14. 'allow_empty' => false,  
  15. ), 


Search for TABLE, TR AND TD




Powered by Icy Phoenix