josedsilva
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP-dTreeI think I fixed the problem. The widget displays “open all” and “close all” tabs only and does nothing more simply because I had not included the javascript files for the plugin in header.php of my customized theme. So in header.php for the theme you are currently using ensure that a statement like <?php wp_head(); ?> exists. This will echo all WordPress-related header information in your final output and this include your plugin css and js files too.
Forum: Fixing WordPress
In reply to: [Plugin: WP-dTree] expand /collapse problemIn the WordPress backend, click on Dashboard->Settings->wp-dtree
In the Category column, uncheck “Close same levels”. Click “Update Settings” and that should work.Forum: Fixing WordPress
In reply to: WP-dTreeI am facing the same problem too. It displays “open all” and “close all” tabs only and nothing more. The backend preview and the default theme kubrick, show the widget in action but not my customized theme.
I am using wp-dtree 3.5 on wordpress 2.8.6. I have customized my theme and the sidebar supports widgets. The other widgets work fine except for wp-dtree. Could there be a problem with functions.php? My code is as follows:
if ( function_exists(‘register_sidebar’) )
register_sidebar();
Am I missing out something?