esferapublica
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: NextGen Gallery] loop the lightbox galleryjust to correct myself > i’m using the thickbox effect, not the lightbox effect. but, also installed lightbox, which is also not able to loop the slideshow.
I’m having the same problem, can anybody help?
Forum: Plugins
In reply to: [Plugin: NextGen Gallery] loop the lightbox galleryno idea? isn’t this some setting I can customize in the jquery settings? somehow????
please help! didn’t find anything in the internet!
Forum: Themes and Templates
In reply to: link to post title anchor on category pageanybody?
Forum: Themes and Templates
In reply to: custom field and image rolloverHey alchymyth,
this works! perfectly explained. thanks a a lot.Forum: Themes and Templates
In reply to: custom field and image rolloverHey alchymyth,
first: thanks for your help. This already looks like it could work. But how can I define the rollover Image. It’s a custom field aswell, named ?thumb_over?.
You can see my site in progress here.
thx, karina
Forum: Plugins
In reply to: Help with custom field css image rolloverI try to do the same. Has anybody a solution to this?
Forum: Plugins
In reply to: WP-Cycle – multiple?Just got an answer from the developer. This feature is not available until now. Anybody has another plugin to recommend that is able to do this?
Forum: Plugins
In reply to: [Plugin: Meenews] Where to put Subscription formno ideas?
Forum: Plugins
In reply to: WP-Cycle – multiple?I would need this functionality too.
Anybody an idea? Or any other plugin to recommend?
Thanks, KaForum: Plugins
In reply to: Post titles of current category, shows just first fiveok, I used this and it weirdly worked.
<?php if(is_category() || is_single()){ global $post; foreach(get_the_category() as $category) { $current = $category->cat_ID; $current_name = $category->cat_name; } } echo $current_name . " has id ".$current; $myposts = get_posts('numberposts=50&category='.$current); foreach($myposts as $post) : ?> <li> <a href="<?php the_permalink(); ?>"> <?php the_title(); ?></a> </li> <?php endforeach; ?>
maybe still somebody has a clue, why the first didn’t work.
Forum: Plugins
In reply to: Post titles of current category, shows just first fiveI don’t get it.
I got the code from another post in the forum. I know it’s bad copying and using code without understanding it. But it looks quite simple.
It makes no sense why it doesn’t work.I tried this from another poster – worked, but still just showed the last five.
Strange.
Forum: Plugins
In reply to: Post titles of current category, shows just first fiveNobody?
Forum: Plugins
In reply to: Post titles of current category, shows just first fivethanks esmi,
but unfortunately doesn’t work. strange ??Forum: Plugins
In reply to: sobeks posts in category plugin, highlight active postok, problem solved.
i deactivated the plugin and it worked with code i found at another post.
<ul> <?php $catsy = get_the_category(); $myCat = $catsy[0]->cat_ID; $IDOutsideLoop = $post->ID; global $post; $myposts = get_posts('category='.$myCat); foreach($myposts as $post) : ?> <li <?php if($IDOutsideLoop == $post->ID) print 'class="current-cat";' ?>><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> </ul>