Upgrade to GDv2
This topic contains 41 replies, has 5 voices, and was last updated by Wholistic 6 years, 2 months ago.
We have moved to a support ticketing system and our forums are now closed.
Open Support Ticket-
AuthorPosts
-
January 10, 2019 at 8:54 pm #462595
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?
January 10, 2019 at 8:54 pm #462596This reply has been marked as private.January 10, 2019 at 9:42 pm #462613Please open a new ticket for the search design issue and we will try to help with that.
January 10, 2019 at 10:09 pm #462621Okay. What about my other questions above?
January 10, 2019 at 11:46 pm #462628About 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.
January 11, 2019 at 12:06 am #462637There 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.
January 11, 2019 at 6:56 am #462691Hello,
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
January 12, 2019 at 5:02 pm #462931This reply has been marked as private.January 13, 2019 at 4:45 am #462987We 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=editThe sidebar appears to be the blog sidebar, with the WP Category and Meta widgets.
January 16, 2019 at 9:16 pm #463582Unfortunately, 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.
January 17, 2019 at 8:47 am #463684Hello,
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,
KiranJanuary 21, 2019 at 8:58 pm #464541This snippet fixed it for now, thank you.
-
AuthorPosts
We have moved to a support ticketing system and our forums are now closed.
Open Support Ticket