Kiran
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.This reply has been marked as private.
Hi Fulvio,
I have added following PHP snippet to hide Yes from checkbox search field.
function gd_snippet_190912_search_filter_field_html_output_checkbox( $html, $field_info, $post_type ) { if ( $html != '' ) { $html = str_replace( '> ' . __( 'Yes', 'geodiradvancesearch' ) . '</li></ul>', '></li></ul>', $html ); } return $html; } add_filter( 'geodir_search_filter_field_html_output_checkbox', 'gd_snippet_190912_search_filter_field_html_output_checkbox', 11, 3 );Kiran
Hi Christy,
In GDv2 we have some updates related to map icon size displayed on the map.
Please provide screenshot if it shows bad icon size. You can check one of our text site: https://wpgeo.directory/
Let us know.
Regards,
KiranHi donarcher,
Fusion builder generates two content part on page one for small screen devices & another for large screen devices. It hides content part which contains map.
Please add following CSS snippet to fix the issue.
@media screen and (max-width: 640px) { body:not(.fusion-builder-ui-wireframe).single.geodir-page #content .post-content .fusion-no-small-visibility { display:block !important; } body:not(.fusion-builder-ui-wireframe).single.geodir-page #content .post-content .fusion-no-medium-visibility { display:none !important; } body:not(.fusion-builder-ui-wireframe).single.geodir-page #content .post-content .fusion-no-large-visibility { display:none !important; } }Kiran
September 12, 2019 at 11:26 am in reply to: Need to allow "Edit Location Listing" without showing packages #507800Hi Kenneth,
Try following PHP snippet to allow users to edit their listing from front end even add feature is disabled.
/** * Allow user to edit listing from frontend when add listing feature is disabled. */ function gd_snippet_20190912_add_listing_check_post_type( $return, $post_type ) { if ( $return == false && ! empty( $_GET['pid'] ) && is_user_logged_in() && geodir_listing_belong_to_current_user( absint( $_GET['pid'] ) ) ) { $return = true; } return $return; } add_filter( 'geodir_add_listing_check_post_type', 'gd_snippet_20190912_add_listing_check_post_type', 10, 2 );Kiran
Hi Surender,
This has implemented and it will be in next release of GeoDirectory, Advance Search & Location Manager.
Kiran
Glad to hear that & thanks for letting us know.
Kiran
Hi Deirdré,
I checked your site backend it found that you are using old version of
“GeoDirectory AffiliateWP Integration (geodir_affiliate)” plugin.Please remove that plugin and install “Invoicing – AffiliateWP Integration (wpinv-affiliatewp)” plugin. You can download it from https://wpinvoicing.com/your-account/
Let us know how it goes.
Best Regards,
KiranHi Surender,
We have added task to check how easily feasible to implement feature that use location url based on searched location.
Thanks,
KiranAdd one more following filter.
add_filter( 'geodir_custom_field_output_business_hours', '_gd_snippet_filed_label_remove_colon', 999, 3 ); // 'business_hours' field typeKiran
Hello Neil,
You are using same slug for CPT and main category which creating problem.
Ex: “Restaurants” CPT has slug “restaurants” & for “Restaurants” category slug is also “restaurants”.Try to change slug of category or CPT.
Kiran
Hi Pete,
Please check now. I have fixed region for Centre listings.
Kiran
Hi pinkgecko,
We have fixed issue. Countries table created for main site and it is used within network sites.
Kiran
This reply has been marked as private. -
AuthorPosts