Kiran
Forum Replies Created
-
AuthorPosts
-
Hello,
Please check now. “Advanced Excerpt” plugin breaks the search page results.
I have fixed issue by disabling one option from Settings > Excerpt > Filter: > Untick “the_content()”.Kiran
Try now after clearing your browser cache.
Kiran
If you know how to apply patch then here is patch: https://github.com/AyeCode/geodirectory/pull/739/commits/d337714a8e50535444ed758c48853e94134fd39f
Or provide FTP credentials to apply from our side.
Kiran
This reply has been marked as private.This reply has been marked as private.Hello Naoufel,
Which map api you were using in v1? Google or OpenStreetMap? I checked when searching “11101” with Google API it locates to correct address but when searched with OpenStreetMap it located to somewhere near “Dolní Měcholupy, Prague, 11101, Czechia”.
I have made some changes to work zip search with OpenStreetMap as well. I applied patch on your staging site.
Please check and let us know.
Kiran
This reply has been marked as private.This reply has been marked as private.Hi Robert,
You have placed incorrect templates. Those are used GeoDirectory v1.
For GeoDirectory v2
– Create folder “geodirectory” under your current theme directory
– Copy all template files(or template file you want to modify) from /plugins/geodirectory/templates/ to /themes/YOUR-THEME/geodirectory/Now after copying files you can modify template file from /themes/YOUR-THEME/geodirectory/
Let us know.
Regards,
KiranHi,
1- In listing details > if multiple phone numbers exist it push the related categories
For multiple phones you should create separate fields.
To display more phone for custom fields use following PHP snippet.
function gd_snippet_sd_details_output_social_shortcode( $shortcodes ) { // Create phone custom field with key = "phone2" $shortcodes .= '[gd_post_badge key="phone2" condition="is_not_empty" icon_class="fas fa-phone fa-fw" link="%%input%%" badge="%%input%%" new_window="1" bg_color="#ed6d61" txt_color="#ffffff" alignment="left"]'; // key="phone2" for Phone 2 // Create phone custom field with key = "phone3" $shortcodes .= '[gd_post_badge key="phone3" condition="is_not_empty" icon_class="fas fa-phone fa-fw" link="%%input%%" badge="%%input%%" new_window="1" bg_color="#ed6d61" txt_color="#ffffff" alignment="left"]'; // key="phone3" for Phone 3 return $shortcodes; } add_filter( 'sd_details_output_social_shortcode', 'gd_snippet_sd_details_output_social_shortcode', 10, 1 );—
2- As I mentioned, in Failed Transaction page contain text ( see attached). It should show how many failed transaction user had not just a text.
This is static page text which shown to user when transaction failed. This is a static text and it can be changed by admin.
—
3- Why you removed post slider in V2…??? I was expecting you to improve it to better presentation and more listing from multiple CPT.
In v2 we have post image sliders available. There are 3rd party plugins available with ore custom feature for post sliders. We will check to implement in future version.
—
4- Why not…. this is the time to improve the overlook of the theme as it look so basic. Another disappointment.
Currently our main focus is on GeoDirectory v2 plugin, there are important things to-do. We keep your suggestion, and will check tom implement in future version.
—
Is it possible to hide “Search for” field if selected CPT is chosen ( see attached).
Try this PHP snippet:
function gd_snippet_hide_search_input() { global $geodir_search_post_type; $post_type = ! empty( $_REQUEST['stype'] ) ? $_REQUEST['stype'] : $geodir_search_post_type; if ( $post_type == 'gd_real_estate' ) { ?> <style>.geodir-listing-search .gd-search-input-wrapper.gd-search-field-search{display:none;}</style> <?php } ?> <?php } add_action( 'geodir_after_search_for_input', 'gd_snippet_hide_search_input' );—
can I exchange position of the geo map and listing section without changing the writing direction, in another word, without using RTL. (see attached)
Try this PHP snippet:
function gd_snippet_dt_blog_sidebar_position( $position ) { if ( ! sd_is_non_location_cpt() && ( geodir_is_page( 'listing' ) || geodir_is_page( 'search' ) || geodir_is_page( 'author' ) ) ) { $position = 'left'; } return $position; } add_filter( 'theme_mod_dt_blog_sidebar_position', 'gd_snippet_dt_blog_sidebar_position', 10, 1 );Regards,
KiranHi Cheryl,
Login has been fixed.
It was GD Login & UWP Login conflict. I have used UWP Login widget instead of GD Login Widget in sidebar. Please check after clearing your browser cache.
Thanks,
KiranThis reply has been marked as private.This reply has been marked as private.This reply has been marked as private.This reply has been marked as private. -
AuthorPosts