Rafael Dourado
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] How To Deploy Settings with Load BalancerHaving the same problem here.
Forum: Themes and Templates
In reply to: function_existsThank you!
Forum: Fixing WordPress
In reply to: Problems adding administration menusWell, I changed action from ‘admin_head’ to ‘admin_menu’ and it worked. But if I want to add more than one menu item, it looks like that I will have to create more than one file for each menu, because the function parameters is not making any difference. If I do something like this:
add_management_page('Test', 'Test', 7, __FILE__, 'test_function'); add_management_page('Test 2', 'Test 2', 7, __FILE__, 'sec_test_function');Both functions are beeing called at the same time.
Forum: Plugins
In reply to: wp_create_user not working in my pluginJust add this on first line:
require_once(ABSPATH . WPINC . ‘/registration.php’);Forum: Fixing WordPress
In reply to: empty categories returning 404 (WP2.1)I am having the same problem. Did you found a solution?
Forum: Plugins
In reply to: Breukie’s categories widget won’t save settingsStrange it didn’t work 100% for you. I am using it at http://fortaleza.blogcamp.com.br/ and it is working perfectly. Maybe something else is wrong…
Forum: Plugins
In reply to: Breukie’s categories widget won’t save settingsSolved it!!!
About line 388 of plugin’s code you will have the following end of line:
‘widget_breukieslinks’ : /* unregister */ ”, ”, $i);
Just delete the last ”. It will be like this:
‘widget_breukieslinks’ : /* unregister */ ”, $i);I am not a good programmer and i do not know why it solved the problem. But worked.