mrzerog
Forum Replies Created
-
How?
And here is the error:
Notice: Undefined index: ees_year in /home/patyoungblood/thirdcoastactivist.org/working_wordpress/wp-content/plugins/every-calendar-1/includes/custom-post-type.php on line 153 Notice: Undefined index: ees_month in /home/patyoungblood/thirdcoastactivist.org/working_wordpress/wp-content/plugins/every-calendar-1/includes/custom-post-type.php on line 154 Notice: Undefined index: ees_day in /home/patyoungblood/thirdcoastactivist.org/working_wordpress/wp-content/plugins/every-calendar-1/includes/custom-post-type.php on line 155 WordPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '= YEAR(CONVERT_TZ(FROM_UNIXTIME(ecp1_es.meta_value), @@session.time_zone, "+00:0' at line 1] SELECT wp_ff48h4_posts.* FROM wp_ff48h4_posts JOIN wp_ff48h4_postmeta AS ecp1_es ON wp_ff48h4_posts.ID=ecp1_es.post_id AND ecp1_es.meta_key="ecp1_event_start" WHERE 1=1 AND wp_ff48h4_posts.ID = 736 AND wp_ff48h4_posts.post_type = 'ecp1_event' AND ( = YEAR(CONVERT_TZ(FROM_UNIXTIME(ecp1_es.meta_value), @@session.time_zone, "+00:00")) AND = MONTH(CONVERT_TZ(FROM_UNIXTIME(ecp1_es.meta_value), @@session.time_zone, "+00:00")) AND = DAYOFMONTH(CONVERT_TZ(FROM_UNIXTIME(ecp1_es.meta_value), @@session.time_zone, "+00:00")) ) ORDER BY wp_ff48h4_posts.post_date DESC
Forum: Plugins
In reply to: [More Fields] [Plugin: More Fields] version 2.1 | bugs & tipsFYI, i downgraded back to 2.0.5 and everything works fine again. I’ll update again when the bugs get fixed.
Forum: Plugins
In reply to: [More Fields] [Plugin: More Fields] version 2.1 | bugs & tipsI am having an issue with the image select input since the update. When I use the regular image chooser (without the thumbnail) instead of saving the correct value of the image url, it saves the attachment id (i think), so the image url get’s saved as something like ‘326’
When I try the new thumbnail editor, it just says reload to see image options, but reloading the page does nothing.
Thanks for a great plug!
Forum: Hacks
In reply to: What is the purpose of the wp_comments karma column?Having done some research, it seems to be a utility column for anti-spam and rating plugins to use.
also, my code up there for line 81 is a tiny bit wrong. The links would not work because I mistakenly appended a space to the end. it should read:
$fsentries[] = array('title' => $title.' ', 'image' => $image, 'comment' => $comment.' ', 'button-comment' => $buttoncomment.' ', 'link' => $link, 'post_id' => $fspost->ID);
the only change you need to make to frontpage-slideshow.php is on line 81, as I showed up there. The idea is that you need to send the post ID to frontpage_slideshow_TPL() along with all the regular slideshow info. You then make a new template with a different frontpage_slideshow_TPL function, which takes the supplied ID, and from there, it’s a simple matter of using get_the_post_thumbnail().