carlosterrym
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Now Reading Reloaded] MultiUser Modedcservices:
You pointed me exactly to where the solution is. One of the members of the blog I manage asked me yesterday if this was ever resolved so I just came back here today and voila! you made my day!
Thanks!
-Carlos
*This ticket can be closed.
Forum: Plugins
In reply to: Not able to translate some text when “Displaying Library”the word “month” in my previoues message is another one I can’t seem to be able to change.
Forum: Plugins
In reply to: [Plugin: Now Reading Reloaded] MultiUser Mode EnabledGot it. I’m the administrator so I was adding the books for all the users, but that shouldn’t be a problem, as I can have them add the books on their own. Thanks again.
Forum: Plugins
In reply to: [Plugin: Now Reading Reloaded] “Visit Library” not loading correct Theme PageI ended up ‘reading’ the documentation as you suggested and edited the library.php file and got it working. Thanks for your help.
Forum: Installing WordPress
In reply to: Already on 2.7.1 but WordPress tells me to upgradeHopefully that’s it. My Admin interface is set to spanish so that may explain it. I’ll try this weekend to just change it to English to see if that makes a difference. Thanks for the advise.
Forum: Fixing WordPress
In reply to: How to change widget titleYou are a lifesaver. I worked on this for two days and then finally decided to look it up on WordPress. And there it was. The answer to my prayers. Thanks to you my site using the currex plugin is now working.
Forum: Fixing WordPress
In reply to: How THis is work?I got this to work in Author.php. This is what my author.php looks like. Hope it helps. (My apologies if I’m not supposed to post code here)
<?php get_header(); ?>
<?php get_sidebar(); ?>
<div id=”content” class=”narrowcolumn”>
<!– This sets the $curauth variable –>
<?php
if(isset($_GET[‘author_name’])) :
$curauth = get_userdatabylogin($author_name);
else :
$curauth = get_userdata(intval($author));
endif;
?><h2>Autor: <?php echo $curauth->nickname; ?></h2>
<!— <?php echo userphoto_the_author_photo(); ?> –><!– The Loop0 –>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php endwhile; else: ?>
<?php endif; ?>
<?php echo userphoto_the_author_photo(); ?>
<!– End Loop0 –><dl>
<dt>Perfil</dt>
<dd><?php echo $curauth->user_description; ?></dd>
</dl><h2>Publicado por <?php echo $curauth->nickname; ?>:</h2>
-
<!– The Loop –>
-
” rel=”bookmark” title=”Permanent Link: <?php the_title(); ?>”>
<?php the_title(); ?>,<?php the_time(‘d M Y’); ?> en <?php the_category(‘&’);?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?><?php endwhile; else: ?>
<p><?php _e(‘No posts by this author.’); ?></p><?php endif; ?>
<!– End Loop –></div>
<?php get_footer(); ?>Forum: Fixing WordPress
In reply to: How THis is work?Try this outside of the loop in author.php
‘ <!– My Loop –> ‘
‘ <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> ‘
‘ <?php endwhile; else: ?> ‘
‘ <?php endif; ?> ‘
‘ <?php echo userphoto_the_author_photo(); ?> ‘
‘ <!– My Loop –> ‘It is not the cleanest but it works for me.
Forum: Fixing WordPress
In reply to: How THis is work?I inserted the template tag userphoto_the_author_photo() in my author.php file outside of the loop and the same .jpg displays for all users. When I place it inside the loop, the correct picture displays, but it shows up as many times as the author has posts.
Forum: Fixing WordPress
In reply to: How THis is work?I’m having the same issue as teejay76. I have 2 authors on my blog, both pictures (.jpg) have been uploaded, but the same picture displays when we look at either author’s page.
Any help is appreciated. By the way this has been the easiest author image plugin to implement, now if I could only get it working 100%. -
” rel=”bookmark” title=”Permanent Link: <?php the_title(); ?>”>