Kiran
Forum Replies Created
-
AuthorPosts
-
Hi James,
You are using Enfold theme and in Enfold theme the listings top section displayed via hook https://github.com/GeoDirectory/geodirectory/blob/master/geodirectory-functions/compatibility/Enfold.php#L114
Here is function https://github.com/GeoDirectory/geodirectory/blob/master/geodirectory_template_actions.php#L1772
Thanks,
KiranHi Dominic,
I again checked and you have original code there.
See attachments:
file-at-site.png is from your site geodir_payment_actions.php (downloaded via FTP)
gd-file.png is current GeoDirectory original geodir_payment_actions.phpI don’t see any change.
Let us know.
Kiran
This reply has been marked as private.Hi Birgit,
1) Ok
2) Try to translate ‘am’, ‘pm’, ‘AM’, ‘PM’ strings in main WordPress core .po file.
Let us know if it not working.Thanks,
KiranHello Jim,
Thank you for providing FTP credentials, but still can’t have access to plugins manager.
I have done some debugging and found you have done some core changes in file geodirectory_advance_search_function.php in Advance Search plugin. Don’t make changes in core files it may break plugin original functionality.
I noticed there are incorrect relationships between the listings and the categories. You can see few listings without categories as well.When i checked backend one edit listing page it shows no categories assigned (see attachment 1). That’s why those listings not listed in searched results. For “Amos Mosquito’s Restaurant & Bar” listing it shows correct category selected and it listed in searched results.
So do one thing check edit listing page and assign proper categories and resave listing. I have done this for one listing and that listing displayed in searched results.
Let us know.
Thanks,
KiranHi Joy,
Try this snippet.
function _gd_custom_reorder_search_inputs( $template ) { remove_action( 'geodir_search_form_inputs', 'geodir_search_form_post_type_input', 10 ); remove_action( 'geodir_search_form_inputs', 'geodir_search_form_search_input', 20 ); add_action( 'geodir_search_form_inputs', 'geodir_search_form_post_type_input', 20 ); add_action( 'geodir_search_form_inputs', 'geodir_search_form_search_input', 10 ); return $template; } add_filter( 'template_include', '_gd_custom_reorder_search_inputs', 100, 1 );Thanks,
KiranHello,
1) I can’t find expiry notification text in geodirectory-de_DE.po, have you re-scan & updated the .po file?
Please follow steps given in section “Translating Custom Fields without WPML’s String Translation module” at here: https://wpgeodirectory.com/docs/translating-custom-fields/2) Fixed
Thanks,
KiranThis reply has been marked as private.Hi Jim,
I have looked into your site and there is something conflicts on the site.
Please provide us full admin access (currently not able to access plugin manager) & FTP credentials so we can look into more.
Thanks,
KiranHi Dominic,
Thanks for providing credentials.
I have looked into your site and i can’t see errors even there is original code in file geodir_payment_actions.php
Let us know how & where we can replicate errors.
Thanks,
KiranHello,
Provide us FTP credentials so we can take a look files.
Kiran
May 1, 2018 at 5:35 am in reply to: Shortcode [gd_listing_map] not working with parent categories #428580This reply has been marked as private.April 30, 2018 at 12:17 pm in reply to: Shortcode [gd_listing_map] not working with parent categories #428498This reply has been marked as private.Hello,
To fix recurring event issue:
– Open for edit the file \geodir_event_manager\gdevents-admin\admin_functions.php
– Search “function geodir_event_event_schedule_setting()” (around line no. 229 – 248)
– Replace whole function with following:function geodir_event_event_schedule_setting() { global $post, $post_id, $post_info; wp_nonce_field( plugin_basename( __FILE__ ), 'geodir_event_event_schedule_noncename' ); $post_info_recurring_dates = ''; if ( !empty( $post ) && isset( $post->ID ) ) { if ( ! isset( $post->recurring_dates ) && ! empty( $post_info ) && isset( $post_info->recurring_dates ) && ( $gd_post = geodir_get_post_info( $post->ID ) ) ) { $post = $gd_post; } $post_info_recurring_dates = maybe_unserialize( geodir_get_post_meta( $post->ID, 'recurring_dates', true ) ); } $recuring_data = maybe_unserialize( $post_info_recurring_dates ); $post_info_recurring_dates = maybe_unserialize( $post_info_recurring_dates ); // Check recurring enabled $recurring_pkg = geodir_event_recurring_pkg( $post ); // recurring event $recuring_data['is_recurring'] = isset( $post_info_recurring_dates['is_recurring'] ) && $post_info_recurring_dates['is_recurring'] && $recurring_pkg ? true : false; do_action( 'geodir_event_add_fields_on_metabox', $recuring_data ); }Kiran
This reply has been marked as private. -
AuthorPosts