Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
I think this may be related to some recent Google API changes, i am waiting to hear back from Google support.
Thanks,
Stiofan
I removed the nonce check from the file, i belive this is a caching issue, we are looking at ways to prevent this if a user is caching longer then the nonce life span.
Stiofan
Our company is located in the UK, with 12 team members over 5 continents.
We do not provide phone support.Thanks,
Stiofan
It should have went to package 2. The listing inherits the info from the package on creation, updating the package will only affect future creations.
Stiofan
I could not track down the exact issue with only wp-admin access.
If i change the permalinks to include country so country/region/city/ then it works. I suspect there may be a conflict with another plugin, but i would need FTP details to check.Stiofan
It will not send reminders but will send things like expired or downgraded emails.
Thanks,
Stiofan
it is wp-admin i am referring to and the user might still be there but the pass is not what u provided, please try it
Details provided here https://wpgeodirectory.com/support/topic/analytics-add-on/#post-522740 are not working…Stiofan
It seems to be failing the nonce authentication, i removed the line and it seems to work, this would lead me to believe it is a caching issue.
Stiofan
We have a task for improving marker icons, there has been so many bugs in the past it has been on hold for a while but it looks like we can start making some progress on it now. You can follow it here https://github.com/AyeCode/geodirectory/issues/449
Thanks,
Stiofan
Details provided here https://wpgeodirectory.com/support/topic/analytics-add-on/#post-522740 are not working…
Stiofan
preview from the add listing page should work, other links may not until published. We would need wp-admin and FTP to debug.
Stiofan
Hi entoen,
You are only checking for gd_place post type, try checking for all
geodir_get_posttypes()/*change user role when MORE then xxx posts on login*/ function custom_update_roles( $user_login, $user ) { if ( ! empty( $user->roles ) && is_array( $user->roles ) ) { if ( in_array( "subscriber", $user->roles ) ) { $user_id =$user->ID; $gd_post_types = geodir_get_posttypes(); $post_count=count_user_posts( $user_id, $gd_post_types ); if ( $post_count > 0 ) { // Success. $u = new WP_User( $user_id ); $u->remove_role( 'subscriber' ); $u->add_role( 'author' ); } } else { // This user is not a subscriber. } } } add_action( 'wp_login', 'custom_update_roles', 10, 2 );
Thanks,
Stiofan
Please try now, it was to do with a past refund.
Stiofan
Please check now, this seems to be related to your latest refund for the double payment.
Thanks,
Stiofan
The issue is Google geocoding just “Casino” https://google-developers.appspot.com/maps/documentation/utils/geocoder/#q%3DCasino%252C%2520Australia
vs
https://google-developers.appspot.com/maps/documentation/utils/geocoder/#q%3DCasino%2520NSW%252C%2520AustraliaMaybe try this code snippet:
add_action('init','my_near_search_redirects'); function my_near_search_redirects(){ $snear = isset($_REQUEST['snear']) ? strtolower(esc_attr($_REQUEST['snear'])) : ''; if($snear == 'casino' && isset($_REQUEST['sgeo_lon']) && round($_REQUEST['sgeo_lon']) != '153'){ $redirect = add_query_arg( array( 'sgeo_lat' => '-28.8631616', 'sgeo_lon' => '153.048155', )); wp_redirect( $redirect ); exit; } }
Stiofan
-
AuthorPosts