bingorabbit
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: wordpress database needs to be updatedTry deleting wp-admin and wp-includes directories and then reupload them again, but you should ensure that all the files were uploaded correctly.
Forum: Requests and Feedback
In reply to: PageUsing version 2.7, click on Settings > Reading and choose “A static page (select below) from “Front page displays” and select the landing page for your “Front page”. Hope you found this useful.
Forum: Requests and Feedback
In reply to: New 2.7 does not work@skratman: can you please post more details about what you exactly see, a screenshot can solve a lot. π
Forum: Requests and Feedback
In reply to: New 2.7 does not workdo you have javascript enabled?
Forum: Requests and Feedback
In reply to: Comments Page has smilies aroundanother solution can be found here
Forum: Requests and Feedback
In reply to: Comments Page has smilies aroundI was using the “wp-grins” plugin, when deactivated the page went just fine.
Forum: Requests and Feedback
In reply to: WP 2.7 Coltrane Visual Text Editor (WYSIWYG) has a BUGI had the same problem, but I have the “TinyMCE Advanced” plugin activated, when I deactivated it, everything worked just fine and the classic wordpress WYSWIG editor appeared under the visual tab, when I reactivated it everything messed again, any suggestions guys?
Forum: Requests and Feedback
In reply to: 100% pure love for 2.7!Thanks WordPress for your gift; Coltrane!
Forum: Plugins
In reply to: RSS Footer not working after upgrade to 2.6Yes, I’m having a problem here to, i tried fresh installation but if gives me this error!:
Warning: unserialize() expects exactly 1 parameter, 0 given in /var/www/html/wordpress/wp-content/plugins/rss-footer/rss-footer.php on line 93and
Warning: unserialize() expects parameter 1 to be string, array given in /var/www/html/wordpress/wp-content/plugins/rss-footer/rss-footer.php on line 46Forum: Plugins
In reply to: Renaming the Text Widgets?That was then, this is now. There are replacement text widget plugins out there that will let you change the name of the widget on the widgets panel, if you really want to do so.
My solution works for all default widgets :), text, RSS and Categories. π
I don’t see the point in it much myself, because I don’t frequently change my sidebar widgets around and for the few text widgets I am using, I can easily click them and see which widget they are without too much difficulty. If I was using, say, about 8 text widgets, then it might be useful, but I’m only using 2
Exactly, I dun use widgets at all, but it was just a reply for someone suffering HUGE number of widgets:)
Forum: Plugins
In reply to: Renaming the Text Widgets?Hello, I have solved this, please refer to this topic for more information, also you may check this for screen shots π
Thanks in Advance!
Forum: Developing with WordPress
In reply to: Change widget title within Admin widgets panelObviously, the widget title has to appear in the web page, except if you need no title at all, and this is another situation that needs another solution..The one above is not for what you seek, sorry pal π
Forum: Developing with WordPress
In reply to: Change widget title within Admin widgets panelHello,
I have managed to solve that in wordpress 2.3.1.
In wp-includes/widgets.php at line 605, change
$name = sprintf(__('Text %d'), $i);
to:$title = $options[$i]['title']; $name = __('Text (' . $title . ')');this will change the text widget name for example from Text 1 to Text (Widget_Name) , and you can do that for example to the categories widget by doing the same change at line 792 from:
$name = sprintf( __( 'Categories %d' ), $i );
to:$title = $options[$i]['title']; $name = __('Categories (' . $title . ')');This really worked great for me..
Hope that helps π