14
           
            
                
     
    
    Quote:
geekwright wrote:
There is a XoopsFormRendererBootstrap4 that will be included in 2.5.11
you can copy the file XoopsFormRendererBootstrap4.php into your theme's directory and use:
 include_once 'XoopsFormRendererBootstrap4.php'; 
XoopsFormRenderer::getInstance()->set(new XoopsFormRendererBootstrap4());  
Ok, i 've tried on XOOPS 2.5.10
but it was not clear for me, i believed that i should modify theme.tpl...
But, in fact, we should modify the theme_autorun.php file like that :
 /* 
xoops_load('XoopsFormRendererBootstrap4'); 
XoopsFormRenderer::getInstance()->set(new XoopsFormRendererBootstrap4()); 
*/ 
include_once 'XoopsFormRendererBootstrap4.php'; 
XoopsFormRenderer::getInstance()->set(new XoopsFormRendererBootstrap4());  
and NOW, it's ok ! 
(No need action for xoops 2.5.11*)