Kiran

Forum Replies Created

Viewing 15 posts - 2,386 through 2,400 (of 6,022 total)
  • Author
    Posts
  • in reply to: search for and near bars not working #484318

    Kiran
    Moderator
    Post count: 7069

    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

    in reply to: Upgrade orientation #484310

    Kiran
    Moderator
    Post count: 7069

    Try now after clearing your browser cache.

    Kiran

    in reply to: Upgrade orientation #484304

    Kiran
    Moderator
    Post count: 7069

    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

    in reply to: Contact Email link breaks GD Listing page #484302

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Creating a New Place is Not Working #484300

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Upgrade orientation #484279

    Kiran
    Moderator
    Post count: 7069

    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

    in reply to: 500 Error after activating some plugins #484271

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Is Featured? Default value checked bug #484270

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: All widget areas missing in GD V2 version #484264

    Kiran
    Moderator
    Post count: 7069

    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,
    Kiran

    in reply to: Home Page changes after V2 #484261

    Kiran
    Moderator
    Post count: 7069

    Hi,

    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,
    Kiran

    in reply to: Logging In Not Working Consistently #484251

    Kiran
    Moderator
    Post count: 7069

    Hi 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,
    Kiran

    in reply to: Overwhelmed by WPML multilanguage problems. #484169

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Upgrade orientation #484168

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Overwhelmed by WPML multilanguage problems. #484166

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Upgrade orientation #484136

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
Viewing 15 posts - 2,386 through 2,400 (of 6,022 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount