pavelevap
Forum Replies Created
-
Forum: Plugins
In reply to: [Query Monitor] Conflict with NextGEN GalleryGreat, thank you very much!
Is there any patch or commit that I can test? Or is it safe to simply comment mentioned function?
Forum: Plugins
In reply to: [Query Monitor] Conflict with NextGEN GalleryYes, I understand, I wanted to use Query Monitor to monitor some strange behaviour (many SQL queries) of NextGEN Gallery 🙂
I tracked this issue down to after_output() function and especially ob_flush() function.
https://plugins.trac.wordpress.org/browser/query-monitor/trunk/dispatchers/Headers.php#L52
When I comment this line, then everything works fine. But I am not sure if there are any related (hidden) problems?
Forum: Plugins
In reply to: [WP-PostViews] Some posts and pages do not countThank you for your answer!
Yes, I went through plugin code and I did not found any related issues. I thought using add_post_meta() for publish_post action can make problems, but there is also true parameter, so new meta should not be created. I thought somebody publish post, then mark it as draft and then publish it once again…
Do you have some details about other affected users? Maybe we have similar environment or something else…
I am using W3 Total Cache, maybe somehow related?
Forum: Plugins
In reply to: [WP Project Managment Ultimate] Unable to assign users to a projectHi all,
you have to change following code (file WPPM-Metaboxes.php, line 309).
Current code:
if ( !wp_verify_nonce( isset($_POST['_wppm_project_meta_nonce']), WPPM_RELATIVE )) {Functional code:
if ( ! isset( $_POST['_wppm_project_meta_nonce'] ) || ! wp_verify_nonce( $_POST['_wppm_project_meta_nonce'], WPPM_RELATIVE ) ) {I was caused by this (added in WordPress 3.5.2 and WordPress 3.6). But WordPress is doing it right, problem was in plugin code…
If there is no response from plugin author, I will ask administrators for commit rights to repair this nice plugin officially.
No way 🙁 I tried everything… I tried location, location_id and location_name. It looks like location is ignored somehow… Could you please test it if I am not crazy? You need only some testing events…
Thank you for your answer! Yes, I tried this and it does not work, maybe bug?
Results are the same as simple event_lists shortcode without arguments:
Event 1 - Location 1 - 06/06/2011 - 18/12/2013 Event 2 - Location 2 - 21/12/2012 Event 3 - Location 3 - 28/05/2018 Event 4 - Location 1 - 28/12/2012I would like to sort events like this (grouped locations):
Event 1 - Location 1 - 06/06/2011 - 18/12/2013 Event 4 - Location 1 - 28/12/2012 Event 2 - Location 2 - 21/12/2012 Event 3 - Location 3 - 28/05/2018I tried to debug queries, but with no success. But it looks like some kind of bug…
agelonwl: Thank you for your code, but if I understood it correctly, shortcode location_group shows only list of states and regions (grouped). I want to make list of events which could be sorted (grouped) first by location and then start date.
I wanted to modify main events-list shortcode, but I am stuck now 🙁
I tried this code:
add_filter( 'em_events_get_default_search', 'my_em_styles_get_default_search', 1, 2); function my_em_styles_get_default_search( $searches, $array ) { if( !empty( $array['template']) ) { $searches['template'] = $array['template']; } return $searches; } add_filter( 'em_events_output_args' , 'my_em_events_output_args' ); function my_em_events_output_args( $args ) { if ( isset( $args['template'] ) && !empty( $args['template'] ) ) { $args['format_header'] = '<ul>'; $args['format_footer'] = '</ul>'; $args['format'] = '<li>#_EVENTLINK - #_LOCATIONLINK, #_EVENTDATES</li>'; $args['orderby'] = 'location_id,event_start_date'; } return $args; }But it does not order well…
All I want is modified list of events when adding shortcode [events_list template=”test”]:
Event 1 - Location 1 Event 3 - Location 1 Event 2 - Location 2Any idea? Thank you for your help…
Also for XFBML there is hardcoded en_US language. Could you please replace it for example with WPLANG variable?
Forum: Fixing WordPress
In reply to: Wrong file URL on multisiteSorry, it looks right. I was misreading that you are installing Multisite into subdirectories. I had problems with subdomains where are different rules…
Forum: Fixing WordPress
In reply to: Wrong file URL on multisiteHmm, strange. And what do you have in .htaccess now?
Forum: Fixing WordPress
In reply to: Wrong file URL on multisiteHi, please check your .htaccess file.
Sometimes there are parts of previous WordPress code (usually between # BEGIN WordPress and # END WordPress). You can remove all this lines and it should work…
Forum: Plugins
In reply to: [Email Log] [Plugin: Email Log] Database table not createdOK, after some debugging I probably found a solution.
I have MySQL version 5.5.20 and timestamp(14) is not supported anymore.
Tested and it works well. Could you please repair this problem in next version? There will be more and more users with new MySQL 5.5.x. Thank you!
No, this format is used on my main events page. There are specified post thumbnail, title, date, category, excerpt, etc. I need another simple template which can be used only for simple listings as in example above (for example title + date).
@shortye: So, slowdown was not related to installing multisite on subdomain? It would be great… Maybe this can be somehow related to this issue: http://core.trac.wordpress.org/ticket/18292 ?
I created 2 subdomains and pointed them to the same directory in my server setup.
How it was achieved? With the help of .htaccess or any other way (symlink)?