lisaps
Forum Replies Created
-
Forum: Installing WordPress
In reply to: get_links and wp_list_bookmarks()I can’t either and mine says “Blogroll” instead of “Bookmarks” for some reason — even though bookmark-template.php says it should say “Bookmarks.”
Forum: Plugins
In reply to: Tiny MCE Plugin Blank PopupsI have definitely enabled Javascript, btw.
Forum: Plugins
In reply to: Tiny MCE Plugin Blank PopupsSo I’ve turned off the TinyMCE plugin, but the rich editor that comes with WP 2.2.1 still doesn’t work and acts in the same way. I tried it on a Mac in Firefox and Safari, as well as in Windows IE7 and Firefox. In IE7 I couldn’t even put my cursor in the editing window.
In Safari, however I did get two errors.
(1) Slow Script: A script on the page “Blog Name > Create New Post — WordPress (http://www.domain.com/wp-admin/post-new.php) is making Safari unresponsive. Do you want to continue running the script, or stop it?
(2) After clicking Stop: tinyMCE object reference not found from popup.
This pretty much makes WP 2.2.1 unusable to me, so any help would be appreciated.
Forum: Fixing WordPress
In reply to: Blogger Import PHP ErrorThanks for the help. I’m on a Mac too, but I’ll look into this as well as contact my host.
Forum: Plugins
In reply to: Widget Plugin not workingThanks for the help! I just want to make sure I understand. You’re saying that if I had three sidebars, that in the sidebar.php file I would have this:
<?php
if ( function_exists('dynamic_sidebar') && dynamic_sidebar(1) ) : else :
if ( function_exists('dynamic_sidebar') && dynamic_sidebar(2) ) : else :
if ( function_exists('dynamic_sidebar') && dynamic_sidebar(3) ) : else :
?>Forum: Plugins
In reply to: Widget Plugin not workingA bit of an ID:10T error here, but I still don’t have the problem solved. Turns out I was using an old version of Dark Maple and once I updated it, the plugin started working.
Only, then I tried to set it for multiple sidebars and now I can’t connect to the blog at all. I’ve emailed my tech support about that issue, but can someone here clarify the directions on how to use multiple sidebars so I don’t mess this up again? I’m not a PHP programmer so this wasn’t immediately clear to me. The directions state:
>Instead of register_sidebar() you should use >register_sidebars(n) where n is the number of sidebars. >Then place the appropriate number in the dynamic_sidebar() >function, starting with 1.
I assume this means that my functions.php file should be this:
<?php
if ( function_exists(‘register_sidebars’) )
register_sidebars(5);?>
Does this mean that in my sidebar.php it should say this:
?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar(5) ) : else : ?>
Forum: Plugins
In reply to: Widget Plugin not workingI’m having the same problem as miltonalmeida and seoidiot, and I’m using a theme that supports widgets. I customized some of the CSS for Dark Maple, a supposedly widget-ready theme:
http://www.transycan.net/blogtest/2006/04/11/dark-maple-ready-for-widgets/