fafa-webwau
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Filebase Download Manager] WP-filebase custom paginationResolved.
For those who have the same problem, you can customize the pagination in the file ListTpl.php line 166.Forum: Plugins
In reply to: [WP-Filebase Download Manager] WP-filebase custom paginationup
Forum: Fixing WordPress
In reply to: Custom search filters between 2 datesFinally I found the good syntax and it works I can search posts between 2 dates through the form, but when I enter some text in the textfield, it redirects me to a “not found” page.
Any idea ?
Forum: Fixing WordPress
In reply to: Custom search filters between 2 datesup
Forum: Fixing WordPress
In reply to: Custom search filters between 2 datesHi Andrew Bartel,
Thanks for taking the time to analyse and answer my question.I tried to use WP_Query several ways:
<?php wp_reset_query(); ?> <?php query_posts('category_name=news&posts_per_page=5&&order=ASC'); ?> <?php function filter_where( $where = '' ) { // posts for March 1 to March 15, 2010 $where .= " AND post_date >= '2010-03-01' AND post_date < '2010-03-16'"; return $where; } add_filter( 'posts_where', 'filter_where' ); $query = new WP_Query( $query_string); remove_filter( 'posts_where', 'filter_where' ); ?>(Just adding it after the filer)
Nothing changes even if I change the dates.I tried to remove the query_posts but when I do this, I don’t get any result (I got the current page link instead of the posts list).
So I tried to remove the query post and add my query inside the wp_query like this<?php wp_reset_query(); ?> <?php function filter_where( $where = '' ) { // posts for March 1 to March 15, 2010 $where .= " AND post_date >= '2010-03-01' AND post_date < '2010-03-16'"; return $where; } add_filter( 'posts_where', 'filter_where' ); $query = new WP_Query( $query_string . 'category_name=news&posts_per_page=5&&order=ASC' ); remove_filter( 'posts_where', 'filter_where' ); ?>And I got the same result.
Do you have an idea ?(For the moment I don’t use the form, I write the code directly in the theme template to see if the results are right.
Forum: Plugins
In reply to: Gallery with popup pluginup
Hmmm that solution provides only static fields ? I mean the website administrator could not be able to set specific fields for specific events right ?
Thank you @aglonwi.
@marcus: I’m interested by the possibility to do it in the free version. Do you know if I could find some sample, or a tutorial ?Hi JLeuze,
I have a similar problem, I’m using meteor slides on several pages and, for example, if I want a slideshow with “N” slides, I need to add “N+1” slides to see all of them whatever the number of slides.
Do you know what is the problem ?Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Custom Thumbnail pagerI’m using Advanced Custom Fields.
Thanks for your advice.Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Active thumbnail-pager classSorry but I’m working offline.
But maybe it’s because my loop that loads the thumbnails is outside the sliders loop ? (I’ve put it outside the file meteor-slideshow.php)My mistake, I installed “Event Manager” instead of “EventS Manager” Sorry and thanks for your help
When I try this code in my php page template:
<?php echo do_shortcode( '[events_list limit="10"]' ); ?>
I got this output: “[events_list limit=”10″]”.
Is there something to do to enable the shortcodes, or maybe a setting I missed in the plugin configuration ?Sorry I didn’t precise, but, I’m trying to show the event list. Your post is to show a single event.