websign
Forum Replies Created
-
Of course it has to be changed into
'hide_empty' => 0,😉It’s far easier solution – one character to change. Open file category-template.php (in wordpress wp-includes directory), find definiotion of wp-list-categories (about 452 line) and below in defaults array you’ll find
'hide_empty' => 1,– change it into'hide_empty' => 1,and that’s it!Unfortunately I have the same problem. Very often I see blank page (I disabled displaying errors). When I referesh page, everything is ok again.
I had the same problem. The changes had to be done in pdo/wp_install.php Firstly I copied some code from wp-admin/includes/upgrade.php (code for creating user was slightly different) but it didn’t help. Finally I add extra parameter ($user_password) to function wp_install in pdo/wp_install.php :
function wp_install($blog_title, $user_name, $user_email, $public, $deprecated='', $user_password = '')and now it works!