navid
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: home page in comments section when posting a commentYou can either write a php function to modify the data before it gets inserted into the database, or you can use some JavaScript to dynamically add it for the user. Otherwise, you could even try to add
value="http://"as the default text for that input field. That may remind users to.Forum: Fixing WordPress
In reply to: V1.5 RSS time stamp problemIf this is unreported, you should add it to the bug database. It will be tended to, quickly.
Forum: Fixing WordPress
In reply to: Submission lag when using w.bloggarIf it’s showing up in the admin panel but not on the frontpage, it could be a timezone issue. You see, you can post things in WP in the future, and they won’t show up until that moment. So, this is what it sounds like. You’re posting from a different timezone that is ahead, it gets posted to WP using that “future time” and only shows up x hours later when the WP-server timezone catches up. Makes sense?
Forum: Plugins
In reply to: Spell checkI had a lot of trouble with this plugin as well. What I resorted to was using SpellBound (a firefox extension) which simply gives me the option of spell checking any textarea / input box. I found it as an adequate solution and it’s global (not just defined to WordPress).
http://spellbound.sourceforge.netForum: Plugins
In reply to: Referrer spammer caughtI think it would be ideal if this information was centralized. As in, someone with special authority adds a new IP to this global blacklist, and from there, everyone would aggregate that information. Does that even sound feasible?
Forum: Plugins
In reply to: WP Page as static home pagerboren, the home.php idea is phenomenal. I hope to see it implemented soon. Currently, I used a “template” page to achiev the same effect but a home.php or frontpage.php would be the most efficient. Thanks.
Forum: Installing WordPress
In reply to: Problem downloading latest.tar.gz and latest.zipWelcome to SP2?
Forum: Fixing WordPress
In reply to: Backslashes in Front of Single Quotes in TitlesYou’ll need to add a stripslashes($text) somewhere in the code where I don’t remember.
Forum: Themes and Templates
In reply to: How to validate “<i></i>”?<i>has been depreciated. You should use<em>instead.Forum: Fixing WordPress
In reply to: Comments BugI second this behavior on the Jan 1st and Jan 11th nightly.
Forum: Fixing WordPress
In reply to: User infoThe best way to figure out how to do this is to upload / modify your file and add the following to the top after the header information:
<div style="display: none;">
<?php print_r( $GLOBALS ); ?>
</div>Then, upload your file and refresh the page. Check the source and you’ll see a HUGE list of global variables which are available for you to use inside your page. Figure out which ones pertain to logged in users and then simply call them using either
$<variable>directly, or reference$GLOBALS["variable"]Good luck.
Forum: Fixing WordPress
In reply to: “pages” – with Permalinks Breaks “more and Next”You might want to file a bug report for this.
Forum: Fixing WordPress
In reply to: Different Homepage while keeping site in WPYou have an else an no related if.
What structure do you want?
if { }
elseif {}
–> while {}
else {}
endif;or
if { }
elseif {}
while {}
if {}
endif;Forum: Fixing WordPress
In reply to: Update dashboard automatically.It might be getting cached for bandwidth purposes.
Forum: Fixing WordPress
In reply to: Upgrade form 1.2.1 to 1.5You’re supposed to copy the new files over using FTP. If, however, your WP was setup by your host, I think you should probably wait until they upgrade themselves….