Forum Replies Created

Viewing 12 replies - 1 through 12 (of 12 total)
  • It works for me now!

    Quick problemsolving.

    Thanks Scibu

    @ Scribu – MySQL version: 4.1.22

    Can’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?

    Did 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 visitors

    So, what do we do now…can this be fixed or should I just download another “visitors” plugin that works?`

    /EvipPixy

    Thread Starter evilpixy

    (@evilpixy)

    I’m not very good with jQuery…can someone help me?

    Thread Starter evilpixy

    (@evilpixy)

    Thanks – that did the trick!

    Kind regards,
    EvilPixy

    Thread Starter evilpixy

    (@evilpixy)

    Hm…I guess you might be right.

    I was hoping for a simple way to just parse the information ??

    Thread Starter evilpixy

    (@evilpixy)

    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.

    Thread Starter evilpixy

    (@evilpixy)

    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 &raquo;'); ?>
    <?php endwhile;?>
    </div>

    I hope you can figure this out cause I’m starting to loose it over here.

    Kind regards,
    EvilPixy

    Thread Starter evilpixy

    (@evilpixy)

    Sorry – this is NOT a WordPress page yet. I just wanted feedback if I ‘SHOULD’ make it as a WordPress-page.

    Thread Starter evilpixy

    (@evilpixy)

    I 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.

    Thread Starter evilpixy

    (@evilpixy)

    Thank you for the answers.
    However – it does not seem to work.
    It still posts them on top of eachother…

    :~(

Viewing 12 replies - 1 through 12 (of 12 total)