Upgrade to GDv2

This topic contains 41 replies, has 5 voices, and was last updated by  Wholistic 5 years, 3 months ago.

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

Open Support Ticket
  • Author
    Posts
  • #462595

    Wholistic
    Expired Member
    Post count: 80

    Hi Paolo,

    I do not like it that I have to install a separate plugin for login, but I guess that non-negotiable at this point…?
    Now we are using BuddyPress because the directory is a sub-site of another site using BP. However, it is not working ideally. Now we have to have two separate menu buttons – one for login and another one to register.

    Also, the login/My account widget is not working. As you will see on the home page, I have added the My account widget in the right sidebar. When you enter your credentials and click the login button, it opens the login page where you have to again enter your credentials. This should not be happening. Please advise.

    Another issue is, when you go to Add listing, it opens the login page, which is fine, but there is no Registration link for new users. It used to show both – login and registration. Please let me know how this is going to be fixed.

    Another issue…the Register page from BuddyPress has a sidebar that should not be there. I changed the page template to Full page, and disabled the sidebar from Appearance>Customize>Body>Sidebar, but the sidebar is still there. What am I missing?

    #462596

    Wholistic
    Expired Member
    Post count: 80
    This reply has been marked as private.
    #462613

    Alex Rollin
    Moderator
    Post count: 27815

    Please open a new ticket for the search design issue and we will try to help with that.

    #462621

    Wholistic
    Expired Member
    Post count: 80

    Okay. What about my other questions above?

    #462628

    Alex Rollin
    Moderator
    Post count: 27815

    About the sidebars on the full width page, please make a new topic and we will try to sort that for you.

    If there are other new issues please make a new topic.

    #462637

    Wholistic
    Expired Member
    Post count: 80

    There are just so many issues to be submitting separate topics for and this is delaying the process. I now submitted 3 other topics, please respond to them as soon as possible. These issues appeared after the upgrade from V1 to V2. If I knew there were going to be so many issues, we wouldn’t have upgraded.

    #462691

    Kiran
    Moderator
    Post count: 7069

    Hello,

    Another issue is, when you go to Add listing, it opens the login page, which is fine, but there is no Registration link for new users. It used to show both – login and registration. Please let me know how this is going to be fixed.

    This has been fixed already and it will be in next release. From next release it will show login & register link instead of form.

    To fix search form overlapping the map, add following style snippet.

    
    
    .sd-location.geodir_advance_search.gd-google-maps .featured-area.type-location > .header-wrap {
    	z-index: 81;
    }

    Also, the login/My account widget is not working. As you will see on the home page, I have added the My account widget in the right sidebar. When you enter your credentials and click the login button, it opens the login page where you have to again enter your credentials. This should not be happening. Please advise.

    Another issue…the Register page from BuddyPress has a sidebar that should not be there. I changed the page template to Full page, and disabled the sidebar from Appearance>Customize>Body>Sidebar, but the sidebar is still there. What am I missing?

    Please provide FTP credentials to look into above two issues.

    Kiran

    #462931

    Wholistic
    Expired Member
    Post count: 80
    This reply has been marked as private.
    #462987

    Alex Rollin
    Moderator
    Post count: 27815

    We will need FTP for the solution for this. Please post FTP.

    The page is displaying a sidebar, yes, and it can be hidden temporarily with this CSS until we find a solution:

    
    
    
    .page-id-29214 .sd-sidebar.sd-sidebar-right {
        display: none;
    }
    

    For the “My Account” widget, this is the BP Login widget and you will need to ask BP for support with it, as explained here: https://wpgeodirectory.com/support/topic/my-account-widget-not-working/#post-462642

    For the developers:

    The page is set for fullwidth template:
    /wp-admin/post.php?post=29214&action=edit

    The sidebar appears to be the blog sidebar, with the WP Category and Meta widgets.

    #463582

    Wholistic
    Expired Member
    Post count: 80

    Unfortunately, I cannot provide you with FTP access at this time. Please let me know what is causing this issue and how it can be resolved without FTP access. Thank you.

    #463684

    Kiran
    Moderator
    Post count: 7069

    Hello,

    We have checked BP register full page width and it happening with WordPress default theme as well. It seems something from BuddyPress that not assigning template selected from page settings.

    Use following snippet to fix the BP Register full width page problem.

    
    
    /**
     * Force to use assigned Page template with BuddyPress Register page.
     * FIX: BP Registration page loads sidebar even if set to full width.
     */
    function gd_snippet_bp_register_template_fix( $template ) {
    
    	if ( function_exists( 'bp_is_register_page' ) && bp_is_register_page() ) {
    		$bp = buddypress();
    
    	    $template_slug = get_page_template_slug( $bp->pages->register->id );
    
    		if ( $template_slug && ( $located = locate_template( array( $template_slug ), false ) ) ) {
    			$template = $located;
    		}
    	}
    
    	return $template;
    }
    add_filter( 'template_include', 'gd_snippet_bp_register_template_fix', 100 );

    Thanks,
    Kiran

    #464541

    Wholistic
    Expired Member
    Post count: 80

    This snippet fixed it for now, thank you.

Viewing 12 posts - 31 through 42 (of 42 total)

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

Open Support Ticket