Can't Edit Status of a "Places" Page on Backend

This topic contains 4 replies, has 4 voices, and was last updated by  Kiran 4 years ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #539149
    #539154

    Kor
    Moderator
    Post count: 16516

    Hi Josh Sandoz,

    Thanks for your post. We can’t open that link without an access. Please share your Website WP admin access here in private reply and we’ll check this out for you asap!

    #539156

    Josh Sandoz
    Full Member
    Post count: 69
    This reply has been marked as private.
    #539194

    Alex Rollin
    Moderator
    Post count: 27815

    Hello,

    There are console errors on the page. This is probably due to a plugin conflict.

    You can try a plugin conflict text to identify the problem:

    https://wpgeodirectory.com/docs-v2/faq/troubleshooting/#conflict-test

    you are running GDV1. GDV1 is not being actively developed, and you should update to GDV2 as soon as possible.

    https://wpgeodirectory.com/docs-v2/geodirectory/upgrade-from-gdv1/

    #539223

    Kiran
    Moderator
    Post count: 7069

    Hi Josh,

    There is an conflicts issue between Enfold Theme Builder & GeoDirectory v1. Try following PHP snippet to fix this conflicts.

    We recommend you to move on GeoDirectory v2, it is more easy to customize and it has some more features implemented there.

    
    
    /**
      Fix conflicts between Enfold & GDv1.
     */
    function _gd_dnippet_enfold_edit_form_advanced( $_post ) {
    	global $post;
    
    	if ( defined( 'GEODIR_GA_CLIENTID' ) && ! empty( $_post ) && is_object( $_post ) && ! is_a( $_post, 'WP_Post' ) ) {
    		$__post = get_post( $_post->ID );
    
    		foreach ( $_post as $key => $value ) {
    			$__post->{$key} = $value;
    		}
    
    		$post = $__post;
    	}
    }
    add_action( 'edit_form_advanced', '_gd_dnippet_enfold_edit_form_advanced', 100, 1 );

    Regards,
    Kiran

Viewing 5 posts - 1 through 5 (of 5 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket