juri003
Forum Replies Created
-
Forum: Hacks
In reply to: single_tag_title() and multiple_tag_title()Hi Jeff,
This function is exactly what I am looking for, thanks! There is one extra condition that I’ve been trying to realise and that is to exclude certain tags. Do you have any idea how to fix that?
Thanks!
Forum: Fixing WordPress
In reply to: Lost pagesOk, it keeps getting weirder.
Because I could not find the cause I just took all the data from the database and recreated the pages.
Now, again pages are disappearing from the front-end and the back-end. The same characteristics as listed above apply but I found out some more details:
- When I enter the url for page editing and use the id of the missing page, I can fully edit it. Unfortunately it still does not appear on front- or back-end, going back to revisions doesn’t change anything
- No plugins were installed prior to the bug
- If I remove all the content it still does not appear
- The Plugin “My Page Order” (installed after the bug first came up) does list the missing pages. Deactivating it does not change anything
- I Use the “User Access Manager” plugin. Deactivating it does not change anything
Any suggestions? Could it be security related (hack or virus?) or some setting/bug?
Forum: Plugins
In reply to: one post in multiple categories, Wich single template?Solved!
The link referer was the right way to only not with the WP build-in function.
Now I used:
In the categaory.php or whatever-template.php:
<?php the_permalink(); ?>?ref=bla">
In the single.php:
<?php $referer = $_REQUEST["ref"]; echo $referer; if ($referer == "bla") { whatever you'd like } ?>
Thanks to alchymyth & Arjen
Forum: Plugins
In reply to: one post in multiple categories, Wich single template?Hey alchymyth,
I think that function can only get the uri and not information like category. Could try to filter the category from the uri but that would be really unstable. Anyway I tried it in the single template and it does not work at all there.
Thanks anyway!
Anybody? One post in multiple categories with different styles per category?
Forum: Plugins
In reply to: [Taxonomy Images II] [Plugin: Category Images II] Broken in WordPress 3.1.1?Hi,
It actually does not seem to work at all in 3.3.1 or higher. Any ideas, updates maybe?
Cheers
Forum: Plugins
In reply to: one post in multiple categories, Wich single template?The issue has been discussed on many blogs but no solution yet.
Anybody an idea to solve it once and for all?
Forum: Plugins
In reply to: one post in multiple categories, Wich single template?Anybody with a bright idea on the subject? Can it be done?
Forum: Fixing WordPress
In reply to: NextGen custom fields plug-in and ThickboxDoes anyone know how to fix this?
Thanks
Forum: Plugins
In reply to: Shop with multilanguage optionYep, me too.
There are some nice multilangual plugins out there but I am doubting. What would be the reason to choose for one instal with ml plugin or multiple installs in the different languages.
Does a ml plugin also take care of plugins like a shop module? If so, it would be a good option.
Anyone with experience?
Hi Alex,
Usually I leave this field empty because I do my own optimalisation. In former versions this was no problem. Using a value however fixes the problem. Thanks!
Hi, I am still dealing with the issue.. anyone?
Hey Alex!
Thanks for the great tool in the first place! I’ve cleared it several times and if I check the server it does get cleared but it has no effect.
Hi,
Is there anyone with a clue on this?
Thanks
Forum: Plugins
In reply to: second link to activate thickboxHi all
Fixed it with help from a friend. The trick is done with a little bit of jquery that reroutes a mouseclick.
jQuery('#button').click(function() { jQuery('#doel').click(); return false; });
Forum: Fixing WordPress
In reply to: paged list with current positionSOLVED!
I replaced the argument ‘currpage’ into ‘paged’ and removed the parameter before the query:
$paged = (isset($_GET['currpage'])) ? $_GET['currpage'] : $paged;
Another thanks to vtxyzzy!
Here’s the whole deal:
<div class="postnavcont"> <ul> <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $args = array( 'post_type' => page, 'post_parent' => $post->ID, 'posts_per_page' => 12, 'orderby' => menu_order, 'paged'=>$paged, '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 echo add_query_arg('paged',$paged,get_permalink()); ?>" rel="bookmark"><?php the_post_thumbnail(); ?></a></li> <?php endwhile; ?> <li class="butprev"><?php previous_posts_link('<img src="' . get_bloginfo(stylesheet_directory) . '/images/spacer_35.gif" width="35" height="35" alt="Volgende" />') ?></li> <li class="butnext"><?php next_posts_link('<img src="' . get_bloginfo(stylesheet_directory) . '/images/spacer_35.gif" width="35" height="35" alt="Vorige" />') ?></li> </ul> </div> <?php wp_reset_query(); ?>