deliot
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Super Snow (Falling Snow, Customizable)] Can't get it to workTry one of the WordPress default themes (2012, 2013) temporarily, and see if it works with that. If it does, then it may be your theme.
Forum: Plugins
In reply to: [WP Super Snow (Falling Snow, Customizable)] php 5.3 but won't work on 5.4?My server is running Ubuntu 12.04 with PHP 5.4.17, and there are no problems with this plugin. Worked perfectly out of the box.
Forum: Fixing WordPress
In reply to: Adding 2.11 print to 2.2 WPIf you happen to be using the Semiologic CMS WordPress theme, then it’s the theme itself that has the problem. Read this post at the Semiologic forum:
http://forum.semiologic.com/discussion/1928/error-message-using-print-link/#Item_0
Forum: Plugins
In reply to: Open link in new window by defaultAnother way to make “Open Link in a NEW Window” the default is to edit the line:
from:
<option value="_blank">to:
<option value="_blank" selected="selected">So “_blank” now becomes the SELECTED default for the drop down list. Same as what aar0on said, only without changing the order of the options.
Forum: Fixing WordPress
In reply to: Links open in new Window by Deafault?Actually, you should add selected=”selected” This will be better for XHTML compliance, as in XHTML, all attributes must be quoted. See here for a discussion of this:
http://www.w3schools.com/xhtml/xhtml_syntax.aspHere’s how it should be:
<option value="_blank" selected="selected">{$lang_insert_link_target_blank}</option>