Patrik

Forum Replies Created

Viewing 15 posts - 106 through 120 (of 416 total)
  • Author
    Posts
  • in reply to: List Manager issues #495636

    Patrik
    Moderator
    Post count: 1971

    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,
    Patrik

    in reply to: List Manager issues #495633

    Patrik
    Moderator
    Post count: 1971

    Hi,

    Can you go through this documentation https://wpgeodirectory.com/docs-v2/addons/list-manager/

    Let us know if you have any queries.

    Regards,
    Patrik

    in reply to: V2 Update Issues #495092

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Problem with Connecting the app in Social Importer #494431

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.

    Patrik
    Moderator
    Post count: 1971

    Hi,

    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,
    Patrik


    Patrik
    Moderator
    Post count: 1971

    Hi,

    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,
    Patrik

    in reply to: Payments not working? #491988

    Patrik
    Moderator
    Post count: 1971

    Yes! 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,
    Patrik

    in reply to: Payments not working? #491965

    Patrik
    Moderator
    Post count: 1971

    Hi,

    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,
    Patrik

    in reply to: Payments not working? #491931

    Patrik
    Moderator
    Post count: 1971

    Hi,

    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,
    Patrik

    in reply to: UsersWP profile and snippet to hide empty tabs #489437

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Photos are not loading..It shows only image name #487028

    Patrik
    Moderator
    Post count: 1971

    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,
    Patrik

    in reply to: CPT drop downs showing "no results" #486613

    Patrik
    Moderator
    Post count: 1971

    Hi,

    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,
    Patrik

    in reply to: GeoDirectory with Themify Ultra Theme #486578

    Patrik
    Moderator
    Post count: 1971

    Hi,

    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,
    Patrik

    in reply to: Users WP most recent update crashes my sites #486371

    Patrik
    Moderator
    Post count: 1971

    Hi,

    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,
    Patrik

    in reply to: UsersWP profile and snippet to hide empty tabs #485348

    Patrik
    Moderator
    Post count: 1971

    Hi,

    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

Viewing 15 posts - 106 through 120 (of 416 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount