Jeroen
Forum Replies Created
-
Forum: Themes and Templates
In reply to: WPExplorer Adapt theme 404 errors for portfolio displayResaving your permalinks is indeed the solution with the portfolio and highlight posts displaying 404.
I experienced the same issue with All-in-One Event Calendar https://www.ads-software.com/extend/plugins/all-in-one-event-calendar/
But I was able to fix it right away with jonahcoyote’s pastebin solution.
Forum: Plugins
In reply to: [Plugin: WordPress Download Monitor] Syntax for default_orderWow! I’ve been searching for some hours for this solution. And finally its so simple to have download_page descending instead of ascending. Thnx happyches!
I’ve added some ‘tags’ in this post, so others are able to find this solution easier…
Exact same issue here.
Problem is still there in WP 3.4.1 and ai1ec 1.7.1Same here…
Perfect! Works like a charm!
Just to have it working completely, i only needed to add ‘thumbnail’
<?php if ( is_front_page() ) { $query = new WP_Query( array( 'cat' => 5, 'posts_per_page' => 10, 'orderby' => 'rand' ) ); while ( $query->have_posts() ) : $query->the_post(); echo '<a href="', the_permalink(), '">', the_post_thumbnail('thumbnail'), '</a>'; endwhile; } ?>
Thanks a lot!
Forum: Plugins
In reply to: [Meteor Slides] Conflict with the WP e-Commerce pluginHi,
It turned out that there is indeed a conlfict between qTip and WP e-Commerce and Meteor Slides. All three together they wont function. If I take one out then the other two are fine.
I have no clue which piece of code is calling the version from Google. I have searched within all plugins and code, but I can’t find anywhere this ver=3.1.2 code.
Do you have any tips I could follow right now?
Forum: Plugins
In reply to: [Meteor Slides] Conflict with the WP e-Commerce pluginBump? (-:
Forum: Plugins
In reply to: [Meteor Slides] Conflict with the WP e-Commerce pluginHi JLeuze,
I’ve activated the WP e-Commerce plugin now, so you can check the problem? The dots for the paged navigation don’t show up when the WP e-commerce plugin is active. When that plugin is inactive they do show up.
I haven’t added any product, I only activated the plugin. In the end I want to use the WP e-commerce in combination with their membership add-on.
I hope you can give me a solution for this. I really want to use your great plugin and this WP e-Commerce.
Forum: Plugins
In reply to: [Meteor Slides] Conflict with the WP e-Commerce pluginHi,
It’s curious because I used it also out of the box. And I also didn’t create a product.
The link to the page is https://samen.voorhaal.nlCould be great if you could take a small peek. At this point I do not need to use WP e-commerce. So for now it’s turned off. But in the future I’d love to use them both. (Not on the same page though)
Forum: Plugins
In reply to: Post ID shown in Post TitleThanks a lot! That did the trick exactly!
The only downside is that uses the actual post ID and not the number of published post. So posts I deleted are counted as well.
Nevertheless, thanks for your help.
Forum: Plugins
In reply to: Post ID shown in Post TitlePretty please?
Or is this already possible and am I overlooking something…?
@ Alex
What could be great is that the album mode (the album overview) is shown outside the content and the album page inside the content.
Now I have album page in the same spot as the overview, and I wish it would appear in the content area.Thanks WhisperT, that code worked.
I changed it a little to have it working with the compact style, instead of the extend style
<?php $footeralbum = '[album=1,compact]'; $footeralbum = apply_filters('the_content', $footeralbum ); echo $footeralbum; ?>
But also a big thanks @ Alex!
A better template function would be more then welcome.