evilpixy
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: WP-UserOnline] WP useronline 2.7.2It works for me now!
Quick problemsolving.
Thanks Scibu
Forum: Plugins
In reply to: [Plugin: WP-UserOnline] WP useronline 2.7.2@ Scribu – MySQL version: 4.1.22
Forum: Plugins
In reply to: [Plugin: WP-UserOnline] WP useronline 2.7.2Can’t someone create a simple hot-fix? I’m not ready to play around in my database file (i.e just a simpla coder, not über-micro-super-haxxor)
Please….maybe a 2.73 could fix it problem?
Forum: Plugins
In reply to: [Plugin: WP-UserOnline] WP useronline 2.7.2Did inactivate – reactivate : still 0 visitors
Uninstalled the plugin and installed it again : still 0 visitors
Completely removed the plugin, downloaded it and installed it : still 0 visitorsSo, what do we do now…can this be fixed or should I just download another “visitors” plugin that works?`
/EvipPixy
Forum: Plugins
In reply to: Display Box *newbie question*I’m not very good with jQuery…can someone help me?
Forum: Fixing WordPress
In reply to: Problems displaying posts!Thanks – that did the trick!
Kind regards,
EvilPixyForum: Fixing WordPress
In reply to: RSS – get text and imgHm…I guess you might be right.
I was hoping for a simple way to just parse the information ??
Forum: Fixing WordPress
In reply to: Problems displaying posts!Both yes and no.
Ok – I’m sorry if I’m beeing cryptic.
The layout of my page is this.
First show links with text to the 15 first posts in category 1. They will be distributed in 3 columns. Then the idea is to display the 15 first posts in category 1 below my three columns.I just chose to display 15, but it might aswell be 10 or something.
With my current code (2 posts above) it shows the links with text – then one page with a summary of the posts – and then 15 separate “sheets” (everyone with only the text from the posts)
By only having the code:
<?php query_posts('cat=1&showposts=15'); ?> <?php while (have_posts()) : the_post(); ?> <?php endwhile;?>
on the page it will show the 15 separate “sheets” with no Title.
Forum: Fixing WordPress
In reply to: Problems displaying posts!Ok, that works – but the problem is that it shows it all 2 times ?!?
First – within the same sheet and then seperately like it was before.What am I doning wrong here.
Could it be my code above that is interfering with the code?
I will post it here for you to see.<ul> <div style="float:left; width:200px; margin-right:10px;"> <?php $count=0; global $post; $myposts = get_posts('numberposts=15&cat=1'); foreach($myposts as $post) : setup_postdata($post); $count++; ?> <a href="<?php the_permalink(); ?>"><? echo $count?>. <?php the_title(); ?></a> <?php if($count%5 == 0) { echo '</div><div style="float:left; width:200px; margin-right:10px;">'; } ?> <?php endforeach; ?> </div> </ul> <div> <?php query_posts('cat=1&showposts=15'); ?> <?php while (have_posts()) : the_post(); ?> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <?php the_content('Read the rest of this entry »'); ?> <?php endwhile;?> </div>
I hope you can figure this out cause I’m starting to loose it over here.
Kind regards,
EvilPixyForum: Your WordPress
In reply to: FEEDBACK [Drink2Drive.com]Sorry – this is NOT a WordPress page yet. I just wanted feedback if I ‘SHOULD’ make it as a WordPress-page.
Forum: Fixing WordPress
In reply to: Split Category posts in three columnsI managed to do it.
<ul> <div style="float:left; width:200px; margin-right:10px;"> <?php $count=0; global $post; $myposts = get_posts('numberposts=15&cat=1'); foreach($myposts as $post) : setup_postdata($post); $count++; ?> <a href="<?php the_permalink(); ?>"><? echo $count?>. <?php the_title(); ?></a> <?php if($count%5 == 0) { echo '</div><div style="float:left; width:200px; margin-right:10px;">'; } ?> <?php endforeach; ?> <div> </ul>
It now puts a number next to the link as well as creating a new div after 5 posts.
Thank you for the help that made this possible.Forum: Fixing WordPress
In reply to: Split Category posts in three columnsThank you for the answers.
However – it does not seem to work.
It still posts them on top of eachother…:~(