fede777
Forum Replies Created
-
Forum: Plugins
In reply to: Twitter Tools BetaHi, I decided to use Twitter’s code, it’s better, no need of a plugin and it’s CSS changeable.
You can grab it in your Twitter account sidebar.
And it looks like this
<div id="twitter_div"><ul id="twitter_update_list"></ul></div> <script type="text/javascript" src="https://twitter.com/javascripts/blogger.js"></script> <script type="text/javascript" src="https://twitter.com/statuses/user_timeline/YOUR_NAME.json?callback=twitterCallback2&count=2"></script>
Forum: Themes and Templates
In reply to: Comments count, add commentSo, I figured it out.
PHP
<div class="comentario"><?php comments_popup_link('Sin Comentarios', '1 Comentario', '% Comentarios'); ?>, <a href="<?php the_permalink() ?>#respond" title="Agrega un comentario sobre esta entrada">agrega el tuyo</a></div>
CSS
.comentario a { padding:0 0 0 20px; font-weight:bold; background:url(pix/comment.png) no-repeat; } .comentario a + a{ padding:0; font-weight:normal; background:none; } .comentario a:hover {color:#464646;text-decoration:underline;}
Forum: Themes and Templates
In reply to: Comments count, add commentOh great a fucking spammer.
Any one with my question please???
Forum: Themes and Templates
In reply to: Comments count, add commentCome on people, I know it’s not that difficult, can someone please HELP ME????
I just want 2 links, one for the comments section and the other linking to the comment form, both in the same line. That’s all.
Thanks again.
Forum: Plugins
In reply to: Twitter Tools BetaHi Alex, I installed the plugin in my blog but tweets are just not showing, it says always
* No tweets available at the moment.
* More updates…WP 2.5.1
Any idea? the login info is OK.
Forum: Plugins
In reply to: Twitter ToolsI have the exact same problem in my blog.
It just displays
* No tweets available at the moment.
* More updates…Forum: Fixing WordPress
In reply to: Using Gravatar code without the pluginLike this
<?
$email = $comment->comment_author_email;
$default = “https://www.geekspot.com.ar/wp-content/themes/minyx2Lite/pix/default_gravatar.png”; // link to your default avatar
$size = 32; // size in pixels squared
$rating = “G”; // [G | PG | R | X]
$grav_url = “https://www.gravatar.com/avatar.php?gravatar_id=
” . md5($email) . “&default=” . urlencode($default) . “&size=” . $size.”&rating=”.$rating;
?>Forum: Fixing WordPress
In reply to: Couple of errors in WP 2.5 RC1Hi, I solved it deleting the files and copying them again.
Forum: Themes and Templates
In reply to: images on the same lineWhat drewactual wrote works perfect, but it would change every single post.
If you want to use it in just the posts you want you can just select both images holding the SHIFT key and select align center in the Visual editor.
Forum: Fixing WordPress
In reply to: Couple of errors in WP 2.5 RC1Solved
It was an error in the copied files
Forum: Plugins
In reply to: Improvement for the next releaseHey, thanks for the reply.
It worked but now I can’t do 2 things.
1. I can’t add an icon for the Title
2. Can’t add an icon to the postsFor 1 I made this
span.related{background-image:url(pix/related.png);}
And for 2, this (but the numbers are still showing)
span.related li a{ background-image:url(pix/icon_bullet.gif); }
Thanks again and sorry for the trouble :p