Eusebius
Forum Replies Created
-
Same issue here.
In 2.0.4, the grouped list worked, but recurring events did not show up.
In 2.0.5, recurring events seem to show up again, but the grouped list is not working.
Frustrating! I am now going to uninstall everything, install 2.0.3 (which was working fine for us), and reconfigure all the feeds from scratch.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Version 2.0.1 One Day OffThank you for the tip.
I manually cleared the cache, but the feed still begins from yesterday, so it appears that the plugin is off by one day.
I’m using WP 4.0 and GCE 2.0.1 with a standard Google Calendar.
Any other thoughts?
Forum: Plugins
In reply to: [Thumbnail Upscale] Upscale imagesHello,
Thank you for a great plugin.
I am wondering if this code supports the new crop arrays found in WP 3.9+, such as this:
add_image_size( 'basic-thumb', 400, 400, array('center', 'top'));
With your plugin enabled, I can’t get images to crop from the top anymore.
Forum: Plugins
In reply to: [Widget Logic Visual] WLV causes WP Widget Panel to stop working in MultisiteI second that. Same problem on our site.
Forum: Plugins
In reply to: [WP125] WP125 won't show ad imagesHello,
I found the problem. It is not the plugin, but rather, the Adblock extension that is used on many modern browsers. Adblock hides ads by scaling them down to 0x0. When I disabled Adblock, I was able to see the WP125 ads just fine.
God bless
Hello,
I think I found the problem, but I don’t know how to fix it. When I comment out this whole section, the pages load just fine:
// Define a custom where condition on ecp1_events for start year/month/day add_filter( 'posts_where', 'ecp1_events_ymd_where' ); function ecp1_events_ymd_where( $where ) { global $wpdb, $wp_query; if ( isset( $wp_query->query_vars['post_type'] ) && 'ecp1_event' == $wp_query->query_vars['post_type'] && is_singular() ) { $y = $wp_query->query_vars['ees_year']; $m = $wp_query->query_vars['ees_month']; $d = $wp_query->query_vars['ees_day']; $where .= sprintf( ' AND ( ' . ' %s = YEAR(CONVERT_TZ(FROM_UNIXTIME(ecp1_es.meta_value), @@session.time_zone, "+00:00")) AND ' . ' %s = MONTH(CONVERT_TZ(FROM_UNIXTIME(ecp1_es.meta_value), @@session.time_zone, "+00:00")) AND ' . ' %s = DAYOFMONTH(CONVERT_TZ(FROM_UNIXTIME(ecp1_es.meta_value), @@session.time_zone, "+00:00")) ) ', $wpdb->escape( $y ), $wpdb->escape( $m ), $wpdb->escape( $d ) ); } return $where; }
Question 1: What does this function do exactly?
Question 2: Do we need it? ??
Same issue. Did you ever find a fix?