PaBLoX
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Receiving a filedownload message on websiteIf 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.
Forum: Themes and Templates
In reply to: About multilanguage blogging in wordpressThanks 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?
Forum: Fixing WordPress
In reply to: Query_posts, offset and paginationThanks 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!
Forum: Fixing WordPress
In reply to: Query_posts, offset and paginationHey, 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 =)
Forum: Fixing WordPress
In reply to: Query_posts, offset and paginationWhoa, lot of work. I’ll test it tomorrow, I’m falling asleep right now :P.
I’ll tell you how everything went!
Thanks again! ??
Forum: Fixing WordPress
In reply to: Query_posts, offset and paginationHere 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 :).