KK in list pages there are very few symbols displayed, the matter is I can I increase it (see att picture)
How can I increase it?
How can I increase it?
$FUNCS->add_event_listener( 'alter_pages_list_default_fields', 'my_alter_list_fields' );
function my_alter_list_fields( &$fields ){
global $FUNCS;
$route = $FUNCS->current_route;
if( is_object($route) && $route->module=='pages' && $route->class=='KPagesAdmin' ){
if( array_key_exists('k_page_title', $fields) ){
$fields['k_page_title']['content']="<cms:render 'list_title' '10' />";
}
}
}