Kiran
Forum Replies Created
-
AuthorPosts
-
November 5, 2019 at 1:56 pm in reply to: 'Upload Photo' button for countries isn't responding #515995This reply has been marked as private.
Hi DAVID,
1) & 2) are not possible at the moment, but we will consider to implement in future.
3) Provide us site link admin credentials & FTP credentials so we can apply patch on your site.
Kiran
November 5, 2019 at 1:37 pm in reply to: 'Upload Photo' button for countries isn't responding #515991This reply has been marked as private.November 5, 2019 at 1:32 pm in reply to: PHP Fatal error: Uncaught Error – geodir_marker_cluster.php:170 #515990Hi Alex,
Admin credentials are now working. I checked and found that wp-content/plugins/geodirectory contains files/folders from GDv1 & GDv2 both versions.
Please download GDv1 and replace /geodirectory/ in plugins directory. Let us know how it goes, also tell us how to replicate error from our side.
Kiran
Hi Akash,
I checked on staging site and it takes too much time too load and some times shows error:
“504 Gateway Timeout
The gateway did not receive a timely response from the upstream server or application.”I checked by disabling all GD plugins and it also shows same error. I think there is something issue at server side. To check create fresh staging site without any plugin and WordPress default theme. This will help to check loading speed.
Kiran
November 5, 2019 at 12:08 pm in reply to: 'Upload Photo' button for countries isn't responding #515982This reply has been marked as private.November 5, 2019 at 11:21 am in reply to: Mixed + Japanese Language Search working in Content, but not in Title, Tags … #515977Hi bennyb,
– If searched string contains words then it splits string in different keywords and finds posts for each keyword.
Ex: Searching by “Hockey Match” will retrieves all the results which contains “Hockey” or “Match” word.
– If searched string contains single word then finds posts for whole keyword.
Ex: Searching by “Hockey|Match” will retrieves all the results which contains “Hockey|Match” word.In your case posts saved with “Kamon Nudeln Sushi-Bar│カモン・ヌードル寿司バー” so it can be searched by “Kamon” or “Nudeln” or “Sushi-Bar│カモン・ヌードル寿司バー” or whole word “Kamon Nudeln Sushi-Bar│カモン・ヌードル寿司バー”.
To meet your requirement use following PHP snippet.
/** * Find out posts with title contains searched keyword. */ function gd_snippet_191105_search_better_search_terms( $where, $keywords, $keyword ) { global $wpdb; if ( $keyword != '' ) { $where = ' OR ( ' . $wpdb->posts . '.post_title LIKE "%' . $keyword . '%" )'; } return $where; } add_filter( 'geodir_search_better_search_terms', 'gd_snippet_191105_search_better_search_terms', 20, 3 ); /** * Find out posts with content contains searched keyword. */ function gd_snippet_191105_search_content_where() { global $wpdb, $s; if ( $s != '' ) { $where = ' OR ( ' . $wpdb->posts . '.post_content LIKE "%' . stripslashes( wp_specialchars_decode( $s, ENT_QUOTES ) ) . '%" )'; } return $where; } add_filter( 'geodir_search_content_where', 'gd_snippet_191105_search_content_where', 20 );
Regards,
KiranThis reply has been marked as private.November 5, 2019 at 7:46 am in reply to: Imported languages via csv are not automatically linked to original language. #515960This reply has been marked as private.Hi Dirk,
Use following PHP snippet to fix conflict with “Modern Events Calendar” plugin. You can add snippet in child theme functions.php file or via snippet plugin.
/** * Fix conflict with "Modern Events Calendar" plugin shortcode. */ function gd_snippet_fix_conflict_mec( $editor_id ) { global $shortcode_insert_button_once; if ( ! is_admin() && $editor_id == 'mec_fes_content' ) { $shortcode_insert_button_once = true; } } add_action( 'media_buttons', 'gd_snippet_fix_conflict_mec', 0, 1 );
Regards,
KiranThis reply has been marked as private.Hi Vlad,
We have included changes in our plugin too, so don’t worry about future plugin updates.
Kiran
Hi Dirk,
Provide us FTP credentials for the staging site so we can apply & check fix there.
Kiran
Hi Vlad,
I have fixed w3 validation related issues. Please check and let us know.
Regards,
KiranHello Kai,
Paket 3 is non-recurring plan so it shows all the payment gateways.
Paket 4 is recurring plan so it shows only payment gateways which supports recurring payments.Kiran
-
AuthorPosts