xfwayne
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: latest comments in sidebarAdding the () gave me an error on line 7. And the above code gave me only the box with the words “Comments.” Am I supposed to install a plugin also?
Thanks.
Forum: Fixing WordPress
In reply to: Adjusting UTC timeThalks, mklb! That works!
Forum: Fixing WordPress
In reply to: 2.0.5 not showing picturesStill no answers? Someone, please help.
Forum: Your WordPress
In reply to: view only a part of the articleI’m using 2.0 and it didn’t work for me. The link just vanished upon publishing.
Forum: Fixing WordPress
In reply to: User Grouping / Private CatogoriesI concur. I downloaded the rolemanager and was able to install that. It does allow for picking and choosing for individual levels. However, it does not allow picking and choosing for groups among the levels.
BTW, installing the limit+categories gave me blank categories on managing categories and a blank page in the writing posts page.
I’ll keep up with this development. I would appreciate it if you can devise this plugin.
Thanks.
Forum: Plugins
In reply to: [Release] youtube.com video gallery pluginInteresting plugin, yao. 😉
Forum: Fixing WordPress
In reply to: Adjusting UTC timeHelp?
Forum: Fixing WordPress
In reply to: Viewing author’s usernameOK. Thanks, spencerp!
I tried the suggested link but that didn’t work. Neither did the first one you posted above. However, that last one worked.
Again, thank you!
Forum: Fixing WordPress
In reply to: Viewing author’s usernameThanks for the link. I tried inserting the code in but got an error. I wonder if I’m not turning something on because here is what the index is showing already (see the “the_author” in the middle):
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php// the_date(”,'<h2>’,'</h2>’); ?>
<div class=”post”> <!–div post starts–>
<h3 class=”storytitle” id=”post-<?php the_ID(); ?>”>” rel=”bookmark”><?php the_title(); ?></h3><div class=”meta”><?php _e(“Filed under:”); ?> <?php the_category(‘,’) ?> — <?php// the_author() ?> <?php the_time(‘F j, Y @ g:i a’); ?> <?php edit_post_link(__(‘Edit This’)); ?></div>
<div class=”storycontent”>
<?php the_content(__(‘(more…)’)); ?>
</div><div class=”feedback”>
<?php wp_link_pages(); ?>
<?php comments_popup_link(__(‘Comments (0)’), __(‘Comments (1)’), __(‘Comments (%)’)); ?>
</div>