juri003
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: paged list with current positionHey vtxyzzy,
You really rock!
It works now but another problem comes with the solution. The
previous_posts_link
&next_posts_link
don’t work anymore after clicking on a item.If it is possible to add for example
/page/2
to the link instead of?page=2
The problem would be solvedI allready tried 2 other options without succes:
- change the parameter into ‘page’ instead of ‘currpage’
- put a remove_query_arg on the previous_post_link
Forum: Fixing WordPress
In reply to: paged list with current positionHey vtxyzzy,
Again, thanks for your help, I really appreciate it!
There is a bug somewhere that stops the script and pagebuild. The page ends after this:
<li id="post-175"><a href="
You can see it here live: https://2010.jurisverbeelding.nl/foto/portret/siren-dreams
I really try to gain knowledge on these things but it is not sufficient yet to fix it.
cheers
Forum: Fixing WordPress
In reply to: paged list with current positionHey vtxyzzy,
Thanks again! This looks like the solution but I have no clue how to add the variable to the url. I’ve Been searching for examples and trying some but no.
This is the whole output:
<li <?php if (is_page($post->ID)) { echo'class="current_page_item"'; } ?> id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_post_thumbnail(); ?></a></li>
Can you explain how to add the ‘?currpage=$paged’ variable?
Forum: Fixing WordPress
In reply to: paged list with current positionHey vtxyzzy,
Thanks but that is not what I am looking for.
I have long a list of posts that is paginated (splitted over several pages) because else it would be to long.
Whenever you click on one of the posts, the list returns to the first page instead of keeping the current page position.
In the example you can see what I mean, the post-list consits of thumbs.
Forum: Plugins
In reply to: Jcarousel -> current pageHi,
I am trying to keep this topic alive because I still didn’t find a solution. Anyone?
Thanks!
Forum: Plugins
In reply to: List of Subpages that works like a menu (with current_page_item class) ??Ha!
Made it work.
<ul> <?php $args = array( 'post_type' => page, 'post_parent' => $post->ID, 'order' => ASC ); query_posts($args); if ( has_post_thumbnail() ) { } else { } while (have_posts()) : the_post(); ?> <li <?php if (is_page($post->ID)) { echo'class="current_page_item"'; } ?> id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_post_thumbnail(); ?></a></li> <?php endwhile; ?> </ul>
For anybody with the same request
Forum: Plugins
In reply to: List of Subpages that works like a menu (with current_page_item class) ??Hey Moolio,
It’s allready a month ago but did you find a solution? I have the same desire using only post-tuhmbnails.
Thanks
Forum: Plugins
In reply to: Jcarousel -> current pageHi!
Still looking ?? Perhaps somebody knows a (commercial) place where scripting problems like this can be resolved.
Thanks!
Forum: Plugins
In reply to: Jcarousel -> current pageHi!
Still looking for a workaround. If there is nobody with a fix from the top of his /her head maybe somebody is willing to look in to it. I am willing to pay, no problem.
thanks!
Forum: Plugins
In reply to: Nextgen and medium sizeAnybody?
Maybe there is a way for wordpress to make a hardcopy thumbnail of an image from Nextgen? Or a thumbnail plugin that can do that?
Forum: Plugins
In reply to: Use Thickbox to load html or phpHa!
There was a very small but helpfull piece of code there! I just needed to add this behind the source document:
?TB_iframe=true
Now I only need to get rid of those nasty scrolls but I’ll probably manage that!
THANKS!!!
Forum: Plugins
In reply to: Next Gen Gallery – Single Thumbnail for an Album?That definitely works!
Thanks
Forum: Plugins
In reply to: Use Thickbox to load html or phpHey t31os_
Thanks for your reply. Unfortunately that doesn’t do the trick. It seems there is really a some kind of hack necessary to support content other than images.
Anyone?
Forum: Plugins
In reply to: Next Gen Gallery – Single Thumbnail for an Album?Hi,
Thanks for you hack zemmuonne! For me it works ok with thickbox but not with highslide or lightbox in IE7. Is there a workaround or otherwise a trick to make it work in IE7?
Forum: Fixing WordPress
In reply to: Embedding flash file on custom templateSorry,
Got it working as well! All the content needs to be in the absolute root, that includes js & xml files if needed.