rusyn
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP 1.5 : quicktags for SafariOnce I enabled them in the code they work fine. They used to work no problem in WP 1.2 … I dunno what this Safari Javascript problem is…
Forum: Fixing WordPress
In reply to: WP 1.5 : quicktags for Safariwp-admin/admin_functions.php
Around line 536
Cheers!
Forum: Fixing WordPress
In reply to: WP 1.5 : quicktags for Safari“wp-admin/comments-functions.php”
I don’t have this file… (;_;)
Forum: Fixing WordPress
In reply to: 1.5 Static Pages and PHP?I will give it a go…
Forum: Plugins
In reply to: Sortable nicer archives for WordPress 1.2On the initial page, when narchives.php just loads up, how could I set it so that it only displays the CURRENT month, or better yet the current 2 months. Kinda like Binary Bonsai…
Forum: Fixing WordPress
In reply to: Author ArchivesOkay, so now I have set it so that the posts BELOW the
<h2 class=”pagetitle”><?php the_author_nickname(); ?>’s Profile</h2>
<p class=”graybox”><?php the_author_description(); ?>
Are now only showing as titles. That’s fine, but unfortunately all the FULL posts of each author are also showing up ABOVE as well!
What am I doing wrong???Forum: Fixing WordPress
In reply to: rss_url wrong after permalink setup!I am having the same problem, and I removed index.php from my permalinks to no effect.
Any other pointers?Forum: Plugins
In reply to: Multiple Authors Profile PageWhoa, that was screwy.
Try again:
<?php
   global $wpdb, $tableusers;
   $users = $wpdb->get_results(“SELECT ID, user_url, user_description,
user_nickname from $tableusers where user_nickname <> ‘admin’ ORDER BY
rand()”);
   foreach ($users as $user) {
echo ‘<h3 class=”storytitle”>user_url . ‘”
target=”_blank” title=”Link to ‘ . $user->user_nickname . ‘\’s Blog”>’
. $user->user_nickname . ‘</h3><div class=”storycontent”>’ .
$user->user_description . ‘</div><hr>’;
}
?>