wptestert
Forum Replies Created
-
Forum: Plugins
In reply to: [Event List] 0.6.1 doesn't work on WP 3.8.1you probably have an old php version running on your server < php 5.3
the function DateTime::createFromFormat is supported by versions 5.3 and newer
Forum: Plugins
In reply to: [Event List] 0.6.1 doesn't work on WP 3.8.1no I am not the author,
but you can give me a smile ??Forum: Plugins
In reply to: [Event List] 0.6.1 doesn't work on WP 3.8.1I looked at your code, and I can see why, the maps are not in the details field, but in the location field,
replace this
$out .= '<span class="event-location">'.esc_attr($this->db->truncate(min($max_length, $a['location_length']), $event->location)).'</span>';
by
$out .= '<span class="event-location">'. $event->location .'</span>';
Forum: Plugins
In reply to: [Event List] 0.6.1 doesn't work on WP 3.8.1glad I can help you,
for the event just use
$out .= '<div class="event-details">'. $event->details .'</div>';
Forum: Plugins
In reply to: [Event List] 0.6.1 doesn't work on WP 3.8.1sorry,
just use
$title = $event->title;
and the images will show up
Forum: Plugins
In reply to: [Event List] 0.6.1 doesn't work on WP 3.8.1& for the details (map)
$out .= '<div class="event-details">'.$this->db->truncate( min( $max_length, $a['details_length'] ), do_shortcode( $event->details ) ).'</div>';
by
$out .= '<div class="event-details">'. do_shortcode( $event->details ) .'</div>';
Forum: Plugins
In reply to: [Event List] 0.6.1 doesn't work on WP 3.8.1this is because of the truncate function which is replacing the special characters,
have you got the images placed in your title input field?
quick fix for the images:
replace (in sc_event-list.php)
$title = esc_attr($this->db->truncate(min($max_length, $a['title_length']), $event->title));
by
$title = esc_attr($event->title);
Forum: Plugins
In reply to: [Event List] Location field used to take HTMLI think it has to do with the truncate function, this function is converting the brackets to special characters
A quick fix will be replacing: (in includes/sc_event-list.php)
$out .= '<span class="event-location">'.esc_attr($this->db->truncate(min($max_length, $a['location_length']), $event->location)).'</span>';
by
$out .= '<span class="event-location">'.esc_attr($event->location).'</span>';
Forum: Plugins
In reply to: [Event List] Cannot Add eventsis your admin localized – in another language?
try changing that to default (english), the date will then adapt to default notationForum: Plugins
In reply to: [Event List] In spanish!Have you set up the local configuration in the wp_config.php of your wordpress site?
define ('WPLANG', 'es_ES');
Forum: Plugins
In reply to: [Event List] Problems with dateThe plugin uses format YYMMDD whereas your danish wordpress date format is dd-mm-Y,
The plugin is locally translated by using function date_i18n,
but on your frontend the localisation (output of date by functions html_fulldate & mysql2date) doesnt seem to go right,
try changing the two instances in admin_new.php
ofdate_i18n(__('Y/m/d')
indate_i18n(__('d/m/Y')
Forum: Plugins
In reply to: [Event List] Remove Event title linksIf you want the link never to show up, you can safely replace
$out .= 'id, $this->get_url($a))).'">'.$title.'';
by
$out .= $title;
T
Forum: Plugins
In reply to: [Event List] Featured ImageI have made some modifications, and have also included a featured image, which you can select using the wordpress media library / uploader or paste the url, if you want I can share it
sorry, never mind, it is working now
it seems this plugin is working for you,
on which version of wordpress?I am testing it on wordpress 3.1 and it is not working, when I do a search on the custom fields I defined it opens the search result page but finds every single post