Forum Replies Created

Viewing 6 replies - 16 through 21 (of 21 total)
  • If you check your web source code you’ll see there is a strange line containing a script. I presume it’s on the footer.php since is below the html close tag.

    You have to delete that and then take all the necessary precautions so it doesn’t happen again (that’s when I’m having troubles…).

    Anyway, follow the faq, maybe after that nobody is going to bother you again.

    Thread Starter PaBLoX

    (@pablox)

    Thanks for answering!

    How you’re supposed to tell xlanguage how to pick different themes? Is something that you have to do in the advanced configuration or something like that?

    Thread Starter PaBLoX

    (@pablox)

    Thanks a lot for your help :).

    You can check the website if you want :). I’m going to speak about the misadventures with the theme and of course I’ll thank you :).

    I’m changing the “status” from not resolved to resolved.

    Cheers!

    Thread Starter PaBLoX

    (@pablox)

    Hey, it worked! Thanks :D.

    I guess I can play with the code if I need to change something else (like moving up between each group).

    If it’s possible, can you give me a little explanation of what actually the code does?

    Thanks again, it works perfectly =)

    Thread Starter PaBLoX

    (@pablox)

    Whoa, lot of work. I’ll test it tomorrow, I’m falling asleep right now :P.

    I’ll tell you how everything went!

    Thanks again! ??

    Thread Starter PaBLoX

    (@pablox)

    Here is the whole index.php, https://pastebin.com/d4568d1d

    The three parts that I’m speaking of are these 3.

    First group:
    `<?php
    query_posts( ‘showposts=3’ );
    if (have_posts()) :
    while (have_posts()) : the_post(); $category = get_the_category();
    ?>`

    Second group:

    <?php
    					query_posts( 'showposts=6&offset=3' );
    					if (have_posts()) : $counter = 0;
    						while (have_posts()) : the_post(); $category = get_the_category();
    
    						if( $counter % 2 == 0 )
    							$end = "";
    						else
    							$end = "last";
    				?>

    And the third group:

    <?php
    					query_posts( 'showposts=6&offset=9' );
    					if (have_posts()) :
    						while (have_posts()) : the_post(); $category = get_the_category();
    				?>

    If you need anything else, just tell me :).

Viewing 6 replies - 16 through 21 (of 21 total)