Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
May 31, 2018 at 11:40 am in reply to: Urgent help needed: search functionality and map stopped working and image not s #432921
Please check now?
Stiofan
May 31, 2018 at 9:47 am in reply to: Adding Opt in option for marketing for GDPR in add listing form #432909GDPR changes have been added but not a marketing opt-in on the add listing page…
I don’t think that is the right place to add one.Stiofan
I have updated the tested to version for addons now, they were tested with 4.9.6 and 5.0-alpha-43320
Stiofan
There was a problem with the OSM non https call to the encoder, i have fixed this.
Now the problem is that with the free version you must set the default city you want to use, then the system will only let you set listings in that city, please set a actual city by dragging the map marker (not manually entering it)Thanks,
Stiofan
This is now being set by the theme’s h2 font size.
Stiofan
Hi Alex,
In most cases this won’t be a problem (though i don’t know your exact case) If a user is entering their info usually to advertise a business or service then they will need to post and display their contact details and this is expected behavior of the form.
In GDv1 the endpoints don’t show the custom fields unless you have the API plugin installed.
Maybe if i knew what kind of directory you are making i could advise better?
Stiofan
I saved the address and its still there, how do i make it disappear?
Stiofan
There is no easy way to do it, u would have to hire a dev to make a code snippet to do it.
Stiofan
You would remove the old licences from your site where you had activated them before.
Stiofan
There was something weird going on with ur licences, it seemed to be a renewal of a removed licence. You have all new licences now, please remove the old ones and the new ones should now work with no problems.
Let me know if u have any further problems.
Thanks,
Stiofan
Hi Ralph,
I have tried on mac and linux on multiple browsers and i can’t replicate.
Does this only happen when u are logged in? If so please provide wp-admin.Stiofan
Hi Juliet,
Can you please provide login details in a private reply (just tick the box to set as private reply and only staff will be able to see it)
Thanks,
Stiofan
Most all of this is for the express purpose of displaying to the public (unless you have a special directory), we add a privacy policy helper text explaining this.
The user has a reasonable expectation that their info will be public as this is the purpose of the form, in most cases this is done for the legal reason of “legitimate business interests”.
Stiofan
Not tested but something like this would remove the child cats:
remove_filter( 'geodir_search_output_to_main_taxonomy', 'geodir_search_output_to_main_taxonomy', 10); add_filter( 'geodir_search_output_to_main_taxonomy', 'geodir_search_output_to_main_taxonomy_childless', 10,3 ); function geodir_search_output_to_main_taxonomy_childless($html,$cf,$post_type){ $cf->field_input_type = 'SELECT'; $args = array( 'orderby' => 'name', 'order' => 'ASC', 'hide_empty' => true,'parent' => 0 ); $args = apply_filters( 'geodir_filter_term_args', $args, $cf->site_htmlvar_name ); $terms = apply_filters( 'geodir_filter_terms', get_terms( $cf->site_htmlvar_name, $args ) ); // let's order the child categories below the parent. $terms_temp = array(); foreach ( $terms as $term ) { if ( $term->parent == '0' ) { $terms_temp[] = $term; foreach ( $terms as $temps ) { if ( $temps->parent != '0' && $temps->parent == $term->term_id ) { $temps->name = '- ' . $temps->name; $terms_temp[] = $temps; } } } } $terms = $terms_temp; $html .= "<div class='gd-search-input-wrapper gd-search-field-cpt gd-search-field-taxonomy'>"; $html .= str_replace(array('<li>','</li>'),'',geodir_advance_search_options_output( $terms, $cf, $post_type, stripslashes( __( $cf->front_search_title, 'geodirectory' ) ))); $html .= "</div>"; return $html; }
Stiofan
Hi Alex,
What info are you worried about being revealed exactly?
Stiofan
-
AuthorPosts