Kiran

Forum Replies Created

Viewing 15 posts - 406 through 420 (of 6,022 total)
  • Author
    Posts
  • in reply to: Include edit date in GD Export #531892

    Kiran
    Moderator
    Post count: 7069

    Hello,

    It will be in next release.

    Try this patch https://github.com/AyeCode/geodirectory/commit/68763e0f2bc10edd5378de6110fec058846c5854

    Kiran

    in reply to: Wrong sidebar being used for details pages #531891

    Kiran
    Moderator
    Post count: 7069

    Hi Anette,

    We have added Porto theme compatibility. It will be in next release.

    You can apply patch
    https://github.com/AyeCode/geodirectory/pull/1073/commits/d3ff715a3117749cda74dade32e70d987dfa3ad3 or provide us FTP credentials to apply patch on your site.

    Kiran

    in reply to: Package don´t downgrade automatically #531591

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Linked posts pagination #531575

    Kiran
    Moderator
    Post count: 7069

    Hi Tristan,

    Currently no pagination available to GD > Linked Posts widget. We have a plan to integrate linked posts to gd_listings widget to allow more filter options and pagination as well. It will be in future.

    Kiran

    in reply to: Claim – change in package/expiry #531571

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Image / package display conflict #531564

    Kiran
    Moderator
    Post count: 7069

    Hi Mitch,

    There are more than one files are updated so can’t share at forum. You can provide FTP credentials for the staging site, i will upload there.

    Kiran

    in reply to: GD Locations widget pagination bug? #531563

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Open Hours not working in many ways #531562

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Facebook app status: should I tick App status On or Off? #531561

    Kiran
    Moderator
    Post count: 7069

    Hi svara,

    It looks like in recent Facebook API user_events scope is deprecated. I have removed user_events scope now it requires only manage_pages, publish_pages scopes.

    I checked under App Review & request is still under draft status for the manage_pages, publish_pages.

    Let’s wait for this request published from Facebook.

    Kiran

    in reply to: BB Themer Search #531556

    Kiran
    Moderator
    Post count: 7069

    Hi Timothy,

    I just added themer layout for GD search page and it worked fine.

    Please check again and let us know.

    Regards,
    Kiran

    in reply to: Package don´t downgrade automatically #531544

    Kiran
    Moderator
    Post count: 7069

    Hi Alfonso,

    I have checked with sandbox mode by adding one listing with PREMIUM package. I completed payment and found listing published with expire date 22/02/2020.

    I cancelled subscription from gateway and successfully received notification about the same at the website end. Subscription got updated at website and marked as cancelled.

    When listing is running with recurring package and it has cancelled/completed subscription, it downgrades to the package after expire date.

    My listing has expire date 22/02/2020 so expire check function will expire & downgrade the listing after 22/02/2020.
    To test for my listing manually i set expire date to 20/02/2020 and manually run expire check function via tool from GeoDirectory > Status > Tools > Expire Check. My listing successfully downgraded to the FREMIUM package.

    In short, listing which has subscription cancelled/completed is only expire/downgrade after expire date.

    Please try again, let us know how it goes.

    Thanks,
    Kiran

    in reply to: WordPress API returns a 404 error #531530

    Kiran
    Moderator
    Post count: 7069

    Hi timalua,

    I checked on my test site and could not replicate issue there.

    Please provide us a site link & admin credentials in a private reply. Provide us steps how to replicate issue from our side.

    Also provide FTP credentials incise we require to check more.

    Regards,
    Kiran

    in reply to: GD CPT Archives not changing language #531529

    Kiran
    Moderator
    Post count: 7069

    Hi jotomas,

    It looks like this is a default behaviour from WPML, because that language switcher menu is generated by WPML.

    I found someone has reported similar issue at WPML support. See https://wpml.org/forums/topic/language-switcher-does-not-work-for-empty-cpt-archives/

    Regards,
    Kiran

    in reply to: Reordering results within paged search #531527

    Kiran
    Moderator
    Post count: 7069

    Hi Kevin,

    Remove all core files changes if you have any & try following PHP snippet.

    
    
    function gd_snippet_reordering_posts() {
    	global $posts;
    
    	if ( ! empty( $posts ) && isset( $posts[0]->khsearchranking ) && isset( $posts[0]->distance ) ) {
    		usort( $posts, 'gd_snippet_usort_posts' );
    	}
    }
    add_action( 'geodir_before_listing_post_listview', 'gd_snippet_reordering_posts', 1 );
    
    function gd_snippet_usort_posts( $a, $b ) {
    	if ( $a->khsearchranking == $b->khsearchranking ) {
    		if ( $a->distance == $b->distance ) {
    			return 0;
    		}
    		return ( $a->distance < $b->distance ) ? -1 : 1;
    	} else  {
    		return ( $a->khsearchranking < $b->khsearchranking ) ? -1 : 1;
    	}
    }

    Regards,
    Kiran

    in reply to: Html editor in description field not working. #531524

    Kiran
    Moderator
    Post count: 7069

    Hi Tania,

    Try following PHP snippet.

    
    
    /**
     * Always enable HTML editor to description field for admin user.
     */
    function gd_snippet_allow_html_editor_to_admin( $allow, $field ) {
    	if ( ! empty( $field['name'] ) && $field['name'] == 'post_content' && current_user_can( 'manage_options' ) ) {
    		$allow = true;
    	}
    
    	return $allow;
    }
    add_filter( 'geodir_custom_field_allow_html_editor', 'gd_snippet_allow_html_editor_to_admin', 99, 2 );
    
    function gd_snippet_pricing_allow_html_editor_to_admin( $disable_editor, $package_id ) {
    	if ( $disable_editor && current_user_can( 'manage_options' ) ) {
    		$disable_editor = false;
    	}
    
    	return $disable_editor;
    }
    add_filter( 'geodir_pricing_disable_html_editor', 'gd_snippet_pricing_allow_html_editor_to_admin', 20, 2 );

    Thanks,
    Kiran

Viewing 15 posts - 406 through 420 (of 6,022 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount