navid
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Google and Home-hosted WP BlogI believe this is primarily attributed to the fact that wordpress.com has a much higher page rank than your own home-hosted site. Therefore, wordpress.com takes precedence in being ‘refreshed’ (if you will), then the other domain.
Forum: Alpha/Beta/RC
In reply to: hr tag breaks p tag in rc3?You should try <hr /> instead. Also, make sure you are uncheck invalidating XHTML in the Options portion of the administrative console.
Forum: Plugins
In reply to: Spoiler Tag PluginI just wanted to note that I have upgraded my wp-spoiler plugin. This new version fixes a few things and should be overall much much better. I encourage everyone to upgrade.
The URL once again is: http://www.navidazimi.com/projects/wp-spoiler/
Note: The CSS snippet has changed. So make sure you also fix your CSS in addition to uploading the new version of the plugin.
I have also added some live demos of the plugin if you have no idea what “Spoiler Tags” are.
Forum: Plugins
In reply to: Spoiler Tag Plugin🙂
Forum: Fixing WordPress
In reply to: Subject Line QuestionThis can be achieved with some really simple javascript. You really only need two functions. If you still need help, contact me and I will write them for you.
Forum: Plugins
In reply to: Interest in CSS dropdrown menu for pages plugin?Try downloading and using the IE7 CSS hack. It can be found here: http://dean.edwards.name/IE7/
It may solve some of your problems though I admit I have not looked into your source code at all.
Forum: Plugins
In reply to: Loading right column firstCurrently, your site has bigger issues:
Parse error: parse error, unexpected ‘(‘, expecting T_STRING in /home/owner/public_html/wp-content/plugins/customizable-post-listings.php on line 108
Good luck.
Forum: Fixing WordPress
In reply to: Creating a print.css fileYou basically should hide everything but the barebones content.
#allofofstuffhere, #andhere, #andheretoo {
display: none;
}Forum: Fixing WordPress
In reply to: Creating about.php with Mallow after 1.5 upgradeYou need to enable permalinks.
Admin Console -> Options -> Permalinks.
And by the way, it wouldn’t be about.php it would be: http://www.yoursite.com/about/
Good luck.
Forum: Plugins
In reply to: Plugin Page in Admin PanelCheck out my wp-lists plugin. You can add a menu to the top level of the admin menu bar very easily. I had done it previously but then decided Manage -> Lists was more appropriate.
Unfortunately, edit-lists.php is dropped into /wp-admin/. Not sure if that can help you.
Forum: Fixing WordPress
In reply to: [1.5] single quotation marks now preceded by a slash /’You can probably circumvent manually editing the files by using the stripslashes(); functionality of PHP. Simply edit the excerpt and title with stripslashes( $text );
Hope this helps.
Forum: Fixing WordPress
In reply to: Problem with istallation in subdirectoryGrab the latest v1.5:
Upload everything to http://www.domain.com/wordpress/. Then, simply grab the index.php and drop it into the root (www.domain.com). And then change the file to point to the appropriate blog-header.php. Make sure the settings are right in the admin console (mentioned above). Thats it.
Forum: Fixing WordPress
In reply to: 1.5 tables changed?You don’t need two MySQL databases. Simply upload to a new directory and chang the default $table_prefix to something like wp15_
You can run several instances that way and test your new version first before upgrading your production server.
— Navid.
Forum: Everything else WordPress
In reply to: Leaving comments off front page?You can achieve these results by using Templates. But, I believe, last time I heard about this request, roboren chimed in with the notion of a frontpage.php which would automatically override if available in the themes directory.
Forum: Plugins
In reply to: How to change the dynamic url to static urlYou need to enable permalinks.