Fernando
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to ignore the more tag on category.php?It is. You can open the page and see all posts from a specific category being shown. But they are cut off by the more tag.
It is using:
<?php while ( have_posts() ) : the_post(); ?> <?php the_content(); ?>This is a different category, using the same template and it shows the full posts. That is because these I have not used the more tag in it:
Forum: Fixing WordPress
In reply to: How to show a post and its comments in every pageUnfortunately… only shows the content. Not the comments. I want the post and its comments to show anywhere I wish.
Forum: Fixing WordPress
In reply to: How to show a post and its comments in every pageOmg!!!!!!!!!!!!!!!!!!!!!!!!!!
THANK YOU!!!!!
ILL TRY!!!!
Forum: Fixing WordPress
In reply to: How to show a post and its comments in every pagelol :/ what happened to this place? Its like, nobody ever helps anymore 😛
I remember like two years or so ago, it was amazing !!! Just saying. No hate/pun intended 🙂
Forum: Plugins
In reply to: [Plugin: Quick Chat] There is a comma showing on my users list…You are awesome thanks!
Forum: Plugins
In reply to: [Plugin: Quick Chat] There is a comma showing on my users list…Ah! Yeah, it is set to top 😀
And when I put left/right I got no commas!Any chance you can point me out to the java line/php line where I can erase the commas?
I hacked my css to bring the user list to the right side, without knowing these options to do automatically, so when I change from top to right/left, everything breaks.
😀
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Prev and Next image linkslol, what is a pastebin.
aww… I aint retyping that guys!
Anyone who wants the css, just write here and ill redo it for you.
Forum: Fixing WordPress
In reply to: My Login is not working on my .com but works at ,com/blogSomeone? 🙂
Forum: Fixing WordPress
In reply to: My Login is not working on my .com but works at ,com/blogAwww nobody is helping 🙁
Forum: Fixing WordPress
In reply to: My Login is not working on my .com but works at ,com/blogMay I add I have tested this with the default wordpress theme, as well as my own login code below:
<div id="login-box"> <?php if (!(current_user_can('level_0'))) { ?> <h2>Member's Login</h2> <form action="http://domain.com/blog/wp-login.php" method="post"> <div id="login-box-input">Username: <input type="text" name="log" id="log" value="<?php echo wp_specialchars(stripslashes($user_login), 1) ?>" size="20" /><br /> Password: <input type="password" name="pwd" id="pwd" size="20" value="" /><br /> <label for="rememberme"> <input name="rememberme" id="rememberme" type="checkbox" checked="checked" value="forever" /> Remember</label></div> <input type="hidden" name="redirect_to" value="<?php echo $_SERVER['REQUEST_URI']; ?>" /><br /> <input type="submit" name="submit" value="Send" class="button" /> </form> <a href="http://domain.com/blog/wp-login.php?action=lostpassword">Lost Password?</a> <div id="login-box-register"> <a href="http://domain.com/blog/wp-login.php?action=register">REGISTER!</a> </div> <?php } else { ?> <h2>Welcome!</h2> <div id="login-box-input"><span class="personal-menu"> <?php global $user_identity; get_currentuserinfo(); echo('' . $user_identity . ''); ?> <br> This is your Personal Menu<br> <a href="http://domain.com/blog/wp-admin/">Admin Panel</a><br> <?php wp_loginout(); ?></span> </div> <?php } ?> </div> <!-- / login-box-input -->Forum: Fixing WordPress
In reply to: Add only last tweet (twitter)Just go for a twitter plugin. I found no other way.
Forum: Fixing WordPress
In reply to: Comment Author Ranks – Close to being done, need help!Thanks for the help!
It finally works! I re-installed the newly downloaded plugin, and got to retrieve the Rank and Points.
Thanks Bainternet.
Forum: Fixing WordPress
In reply to: Ranked Title for Each Comment AutorCant believe its already working:
<?php if (get_commentCount() < 2) { echo "1"; } else if (get_commentCount() < 5) { echo "2"; } else if (get_commentCount() < 8) { echo "3"; } else if (get_commentCount() < 12) { echo "4"; } else if (get_commentCount() < 18) { echo "5"; } else if (get_commentCount() < 25) { echo "6"; } else if (get_commentCount() < 28) { echo "7"; } else if (get_commentCount() < 35) { echo "8"; } else if (get_commentCount() < 40) { echo "9"; } else if (get_commentCount() < 50) { echo "10"; } else if (get_commentCount() < 60) { echo "15"; } else if (get_commentCount() < 70) { echo "20"; } else if (get_commentCount() < 85) { echo "25"; } else if (get_commentCount() < 100) { echo "30"; } else if (get_commentCount() < 120) { echo "35"; } else if (get_commentCount() < 140) { echo "40"; } else if (get_commentCount() < 160) { echo "45"; } else if (get_commentCount() < 200) { echo "50"; } else if (get_commentCount() < 250) { echo "55"; } else echo "60"; ?>Any idea how to put this as a function, rendering the result in a $resulthere so I can call it
<?php resulthere() ?>by just a line on my comments?Thou, I am happy already, this works perfect!!! YEYE!!
Forum: Fixing WordPress
In reply to: Ranked Title for Each Comment AutorOmg, it works. You are a heavenly angel! (lol) Thank you!
I am getting two echo’s for a post higher than 1, any solution for this?
I basically want to get:
If 5 posts, return “Level 1”.
If 20 posts, return “Level 2”.<?php if (get_commentCount() < 5) { echo "Level 1"; } else if (get_commentCount() < 10) { echo "Level 2"; } else if (get_commentCount() < 20) { echo "Level 3"; } else echo "Level 10"; ?>Forum: Fixing WordPress
In reply to: Comment Author Ranks – Close to being done, need help!I am getting somewhere..
I used this code to see what Im getting and this is waht I got:
<?php echo "". $user_rank['title']; echo "". $user_rank['points']; ?>Post by Admin = title is 1 and pounts is 1.
Post by subscriber = title is 5 and points is 5.So, Title and Points are the same number in that variable… So, I dont know what I done, but the plugin seems to have broken.
I don’t know how to fix this, I tried everything.
😛