PDA

View Full Version : Disable content box collapsing



Mirza Mujkanovic
November 29, 2012, 09:48 PM
Hello,

where and how can i disable content boxes beeing collapsed after clicking on title?

Thank you

Mike
November 30, 2012, 03:33 AM
Hello,

You can change it in code, you have to disable function which does it.
One simple way to do it

open templates/your_template/js/lib.js

find function action_block and add return false; at the beginning of the function



function action_block( id )
{
return false;
if ( $( '#block_content_'+id ).css('display') == 'block' )
{
...


remove your browser cookies at first.