Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author loginradius

    (@loginradius)

    Hi Newest,

    Can you tell us which other plugins you are using?
    We have tried our plugin on our test site and we are not getting this kind of any issue.

    Kindly send us the name of other plugins you have installed. We will try to debug the issue and provide the fix for this.

    i was actually got the same issue on my site the other day – i had to remove it via FTp get access to other admin links and try to install social login instead.

    Plugin Author loginradius

    (@loginradius)

    Hi Svend,

    Thanks for highlighting the issue.
    We have fixed the issue in our latest version 6.0.1

    You can fix it manually also by making following changes to your file
    wp-content\plugins\loginradius-for-wordpress\admin\class-loginradius-admin.php

    1.Search for add_filter( ‘plugin_action_links’,
    Replace complete line with
    add_filter( 'plugin_action_links', array($this, 'plugin_action_links'), 10, 2 );

    2.Search for function public function plugin_action_links
    Replace complete function with

    public function plugin_action_links( $links, $file ) {
                $settings_link = '<a href="admin.php?page=LoginRadius">' . esc_html__( 'Settings', 'LoginRadius' ) . '</a>';
                if ( $file == 'loginradius-for-wordpress/LoginRadius.php' )
                    array_unshift( $links, $settings_link );
    
            return $links;
            }

    This will fix your issue.
    Hope this helps!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Plugin adding a " Settings " Link on ALL other plugins’ is closed to new replies.