Kiran
Forum Replies Created
-
AuthorPosts
-
January 21, 2020 at 6:48 am in reply to: Premiums Listing degrading to 'free' once the trial has expired #526642
Hello @rainbowwebservices,
I checked and it correctly received cancel subscription notification at website end from PayPal. It did not managed a listing status on cancellation of subscription.
I want to do a test with sandbox account. Please provide a staging site or allow us to enable sandbox mode on your site to test and to check what causing issue in handling listing downgrade process on cancellation of subscription.
Thanks for your patience.
Kiran
Hi jotomas,
WPML language menu switcher issue has been fixed.
For issue on page WP Dashboard – Appearance – Menus – Add menu items
– Make sure all strings are translated
– It also depends on admin viewing language under profile page /wp-admin/profile.phpLet us know.
Regards,
KiranHello,
Issue has been fixed and it will be in next release.
Provide us FTP credentials to apply patch on your site to check.
Kiran
This reply has been marked as private.This reply has been marked as private.Hi Alexander,
Finally FTP credentials are worked for me. I have done some debugging and found that source language for the UK archive page is in EN language, but on your site EN language is hidden. So it not detecting original page id for the UK language and this causing translation of page title.
I have fixed issue to detect page id from hidden languages as well.
Please check and let us know.
Thanks for your patience.
Regards,
KiranJanuary 18, 2020 at 7:55 am in reply to: Do the pre expiry emails go out to users on Paypal subscriptions? #526285Hi tinamama,
Yes, currently it sends notification only when listing is recurring with last subscription cycle and going to expire.
We have opened task to implement sending notification to users informing them about next renewal date for active subscriptions.
This feature will be implemented in future based on tasks priority.
Thanks,
KiranHi jotomas,
Please provide us FTP credentials to check what causing this issue.
Kiran
Hi Michael,
Try following PHP snippet to set Business Hours open as default.
/** * Set Business Hours to open as default. */ function gd_snippet_200118_business_hours_set_default( $html, $cf ) { global $gd_post; if ( ! empty( $html ) && ! empty( $cf ) && ! empty( $gd_post ) && ! empty( $gd_post->post_status ) && $gd_post->post_status == 'auto-draft' ) { $html = str_replace( '});</script>', '$("input#' . $cf['htmlvar_name'] . '_f_active_1").prop("checked", true).trigger("change");});</script>', $html ); } return $html; } add_filter( 'geodir_custom_field_input_business_hours', 'gd_snippet_200118_business_hours_set_default', 20, 2 );
Regards,
KiranThis reply has been marked as private.Glad to hear that it worked 🙂
Kiran
Hi Dale,
Issue has been fixed and it will be in next release.
Provide us FTP credentials to apply patch to check on your site.
or
Apply this patch from your side: https://github.com/AyeCode/geodirectory/commit/4c556c6eece5589057e7ff5faa47904ad567bfd5Let us know.
Thanks,
KiranThis reply has been marked as private.Hi Michael,
How can i change the preselected days and opening hours?
Try following PHP snippet to use custom default values for opening hours.
/** * Custom default values for opening hours. */ function gd_snippet_200127_default_opening_hours( $default_hours = array() ) { $default_hours = array(); // Monday $default_hours[ 'Mo' ] = array( array( 'opens' => '09:00', 'closes' => '17:00' ) ); // Tuesday $default_hours[ 'Tu' ] = array( array( 'opens' => '09:00', 'closes' => '17:00' ) ); // Wednesday $default_hours[ 'We' ] = array( array( 'opens' => '09:00', 'closes' => '17:00' ) ); // Thursday $default_hours[ 'Th' ] = array( array( 'opens' => '09:00', 'closes' => '17:00' ) ); // Friday $default_hours[ 'Fr' ] = array( array( 'opens' => '09:00', 'closes' => '17:00' ) ); // Saturday /*$default_hours[ 'Sa' ] = array( array( 'opens' => '09:00', 'closes' => '17:00' ) ); // Sunday $default_hours[ 'Su' ] = array( array( 'opens' => '09:00', 'closes' => '17:00' ) );*/ return $default_hours; } add_filter( 'geodir_bh_default_values', 'gd_snippet_200127_default_opening_hours', 20, 1 );
More info about how to use PHP snippet at here https://wpgeodirectory.com/docs-v2/faq/customizing/#snippets
—
is it possible to remove the option “open 24 hours”?
You can remove “open 24 hours” option by using css.
Try following css:.gd-bh-items .gd-bh-24hours { display: none; }
Regards,
KiranThis reply has been marked as private. -
AuthorPosts