984 comments found.
Hi sorry to disturb you, but “Create and assign Region based on Google geocoding” nothing happens
yeah not working “Create and assign Region based on Google geocoding”.
I’ve make a new installation to check as well and don’t work..
public static function save_location_data( $post_ID, $address_data ) {
if ( ! is_wp_error( $address_data ) && $address_data ) {
$terms = array();
foreach ( $address_data as $key => $value ) {
if ( $value ) {
update_post_meta( $post_ID, $key, $value );
}
$add_region = realteo_get_option(‘realteo_auto_region’);
if($add_region 'on' && $key ‘state_long’) {
$term = term_exists( $value, ‘region’ );
if ( $term !== 0 && $term !== null ) { //exists
$terms[] = (int)$term[‘term_id’];
wp_set_object_terms( $post_ID, $terms, ‘region’, true );
} else {
$tax_insert_id = wp_insert_term($value,’region’ );
$terms[] = $tax_insert_id[‘term_id’];
wp_set_object_terms( $post_ID, $terms, ‘region’, true );
}
}
}
//update_post_meta( $post_ID, ‘geolocated’, 1 );
}
}
another problem that had been reported a long time ago and until today has not been fixed-> When “Remove Preview step from Submit Property” the property is the property is not published and appear this “Your changes have been saved.”.
??
Hi
please don’t expect answer to your support requests when it’s weekend and you’re support period is expired. Please renew your support if you need our help.
Hi,
I’m not asking for help. I’m asking you to fix the bugs that are in your theme and functions that don’t work as it should, as I mentioned above. A report that I even gave a year ago and nothing until today.. I don’t want to be rude, but I don’t think it’s right for a five-star author to sell a product that is simply incomplete.
I tested this functionality and it works fine. You have to have correctly configured APi key for geocoding and you can’t have Region dropdown in the submit form.
Yes, you are right. I used default map keys, that work with google maps but not work with this functionality. I’ve created new keys and worked. I would like to ask that in the next update you do, please fix the error of publishing property without having to review. I would also like to thank you for acting like a professional and sincerely apologize for my ignorance and if I sounded boring.
Hi may be abit of a dumb question, but do you have a changelog for the latest update anywhere? I can’t seem to find one.
I have lot of customization to my site (mainly findeo/realito plugin) and just wanting to see If it’s worth me investing time doing the update.
Thank you
Hi
last updates were mainly to update included plugins like WPBakery and RevSlider, there was no new functionality added.
Sir what I mean is this product page should look like my product page if you have any such demo then give it to me
Product page design : https://www.andrewsresidential.co.uk/property-for-sale-2-bedroom-apartment-in-denham-uxbridge
Picture: https://drive.google.com/file/d/1ToqnKKxY__DuGH2JAREU6KSWJbkLnkXP
We don’t have such option
Hi there, is there anyway I can add another logo to the header widgets section on the site? I would like a logo to show on the right hand side on the header next to the user login button.
depends which header style you are using, you can either add it to header widget area using Text widget, or if you are using standard header, you’d have to modify findeo/header.php and put it there in code
Thanks so much for your reply! I’ve tried this but when I set the image to align right it clashes with the findeo header widget and appears underneath? Is this a bug or is that normal?