sundayx
Forum Replies Created
-
That’s perfect, thanks Craig! Have a good day!
Works great, thanks! Any chance it could also remove the fade-out effect when you mouseover?
Thanks for your quick replies!
Hi Craig, Thanks for your reply. Interestingly this code was recommended from one of you guys in this post to remove the link on the image. I can confirm yes removing it does fix it. Any other script that could achieve the same function?
Thanks!
Brilliant! That worked perfectly.
Thanks for your prompt response John. Really helpful. Great plugin.
Jacky
Hi John… it fixed it. I was sure I tried this method already after reading the support but lo and behold, it worked this time. Thank you.
Another question, is there a way of removing the link back to the instagram (so no link on the image)?
Thanks again,
JackyForum: Fixing WordPress
In reply to: Help with Loop and Multiple StylesAnyone?
Forum: Fixing WordPress
In reply to: Help with Loop and Multiple StylesThanks alchymyth. The problem is I have no idea to create the third loop that continues the second. This is what I have, I know exactly what’s wrong with it (the 3rd loop is running through the query again and returning the 4 posts once again from the 2nd loop) but I have no idea how I can tackle it. Thank you.
[code moderated – please use the pastebin for any code over 10 lines]
Forum: Fixing WordPress
In reply to: Help with Loop and Multiple StylesBelieve me I’ve looked through that through and through but I’m desperately stuck.
So what I did was break it down to the raw basics, this is what I have, meaning also that I’ve done the first 2 parts. What’s left for me is to return the rest of the posts (and not duplicate to what’s being shown already) and this is where I have completely no clue.
Please help.
<?php $my_query = new WP_Query('tag=starred&posts_per_page=5'); while ($my_query->have_posts()) : $my_query->the_post(); $do_not_duplicate[] = $post->ID ?> <!-- do carousel stuff --> <?php endwhile; ?> <?php query_posts(array('post__not_in'=>$do_not_duplicate, 'posts_per_page'=>4)); if (have_posts()) : while (have_posts()) : the_post(); ?> <!-- do loop stuff --> <?php endwhile; endif; ?>[Please post code or markup snippets between backticks or use the code button.]
Forum: Fixing WordPress
In reply to: Help with Loop and Multiple StylesOne day bump.