Kenneth Levänen
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Store Locator] Highlight problem when other characters than a-z0-9Thank you Tijmen, we tested that and it works great!
Forum: Plugins
In reply to: [WP Store Locator] Disable input focusOh, I must be blind. Sorry. I read trough the settings but did not notice that. Thank you!
Forum: Plugins
In reply to: [WP Store Locator] Disable input focusAnswering my own questions.
It can be disabled by adding this to functions.php
$wpsl_settings['mouse_focus'] = 0;Would be nice if that could be done via plugin settings page.
Forum: Plugins
In reply to: [List category posts] Problem with showing the modified dateget_post_modified_time fixes the problem! Thanks!
I changed row 477 in wp-content/plugins/list-category-posts/include/lcp-catlist.php
old:
return get_the_modified_time($this->params[‘dateformat’], $single);change to this:
return get_post_modified_time($this->params[‘dateformat’], false, $single, true );Forum: Plugins
In reply to: [List category posts] Problem with showing the modified dateLooks like you can specify which posts date get_the_time should return. You can’t specify it for get_the_modified_time – it only returns the modified time for the current page/post. So this can’t be fixed, right? Or it needs a custom query instead of get_the_modified_time.