Patrik
Forum Replies Created
-
AuthorPosts
-
We don’t have lists as a tab in the user profile, so it will be not accessible at URL like /profile/user/lists instead all logged in users can see their lists at /lists page.
Regards,
PatrikHi,
Can you go through this documentation https://wpgeodirectory.com/docs-v2/addons/list-manager/
Let us know if you have any queries.
Regards,
PatrikThis reply has been marked as private.This reply has been marked as private.June 20, 2019 at 6:54 am in reply to: How to make Add Listing page redirect to Login / Register page? #493948Hi,
This is not easily possible with GD or UWP. You can use a plugin like “Nav Menu Roles” which allows you to display menu item for logged in and logged out users. You can create two menu items one for logged in users which will be add a listing page whereas you can create another menu item with a custom link to the login page with add listing page as redirect parameter like http://www.yoursite.com/login/?redirect_to=http://www.yoursite.com/add-listing/?listing_type=gd_place
Let me know if this helps you.
Regards,
PatrikJune 19, 2019 at 12:35 pm in reply to: How to make Add Listing page redirect to Login / Register page? #493805Hi,
The site https://www.dancelifemap.com/ is using the GDV1 which is an older version of GeoDirectory plugin.
You have to go to edit add listing page and add one more parameter to the shortcode
[gd_add_listing]
so it looks like
[gd_add_listing show_login=1]
. This will display a login and registration link.
Let me know if this resolves your issue or not.
Regards,
PatrikYes! that will be auto redirected to checkout page and the button is to click if it doesn’t get auto redirected.
If you have any cache enabled on the site or server then please clear it and then check.
Regards,
PatrikHi,
It seems your server doesn’t support PHP sessions and it is causing an issue. You can fix this from your hosting provider.
I have applied a solution for this and it works fine now. I have added the code in config.php file to fix this but once you resolve this from your hosting provider then you can remove this code from config.php file:
if ( !defined( 'WPINV_USE_PHP_SESSIONS' ) ) { define( 'WPINV_USE_PHP_SESSIONS', false ); }
Let me know if it works for you as well or not.
Regards,
PatrikHi,
Can you share FTP details in private reply to check the error logs and do more troubleshooting?
This issue can be due to session path is not writable but need to check from code or you can set up the site on another server to check this.
Regards,
PatrikThis reply has been marked as private.Hi,
I have fixed the issue by creating a new snippet called “Fix image srcset”. Kindly review it and let me know if any issues.
Regards,
PatrikHi,
We have updated the dropdown to select2 for Invoicing and UsersWP plugins also. The post grid plugin conflicts with our plugin and is causing an issue. So you can use the following code in your functions.php file of currently active theme or using snippet plugin to fix this:
/** * Fix select2 conflict with Invoicing & Post Grid (post-grid) plugin. */ function wpinv_post_grid_select2_conflict() { $screen = get_current_screen(); $screen_id = $screen ? $screen->id : ''; if ( wp_script_is( 'select2', 'enqueued' ) && wp_script_is( 'select2.min', 'enqueued' ) ) { if ( $screen_id && in_array( $screen_id, array('wpi_invoice', 'edit-wpi_item', 'edit-wpi_discount', 'wpi_item', 'wpi_discount', 'invoicing_page_wpinv-settings', 'invoicing_page_wpinv-subscriptions', 'invoicing_page_wpinv-reports') ) ) { wp_dequeue_script( 'select2.min' ); // Dequeue Post Grid select2 on WPI pages wp_dequeue_script( 'post_grid_admin_js' ); } else { wp_dequeue_script( 'select2' ); // Dequeue WPI select2 on non-WPI pages } } if ( wp_style_is( 'select2', 'enqueued' ) && wp_style_is( 'select2.min', 'enqueued' ) ) { if ( $screen_id && in_array( $screen_id, array('wpi_invoice', 'edit-wpi_item', 'edit-wpi_discount', 'wpi_item', 'wpi_discount', 'invoicing_page_wpinv-settings', 'invoicing_page_wpinv-subscriptions', 'invoicing_page_wpinv-reports') ) ) { wp_dequeue_style( 'select2.min' ); // Dequeue Post Grid select2 on WPI pages } else { wp_dequeue_style( 'select2' ); // Dequeue WPI select2 on non-WPI pages } } } add_action( 'admin_enqueue_scripts', 'wpinv_post_grid_select2_conflict', 100 );
Let me know if it resolves your issue or not.
Regards,
PatrikHi,
This may be possible due to the author box I think. Can you try disabling it from UsersWP->General->Author box and check if it works for you or not?
Regards,
PatrikHi,
It seems the problem is due to author box functionality we have added to the UsersWP. We are using the_content filter to append author box to post content but as you have posts on home page with excerpt which has limited content, the author box HTML is breaking and so the site is breaking. I would suggest you to disable author box from UsersWP->General->Authorbox and disable it and check if your site works fine or not.
Regards,
PatrikHi,
The changes are now available in the new release of UsersWP done today. So you can update and check if everything working good or not.
Regards,
Patrik -
AuthorPosts