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

    (@loginradius)

    Hi Kcraighead,

    Please follow the steps mentioned below to resolve the issue:-
    1. Open “wp-content/plugins/loginradius-for-wordpress/LoginRadius_socialShare.php” (located in your WordPress website root folder) in your favorite code editor.
    2. Search following code:-

    $content = $horizontalDiv.’
    ‘.$content.’
    ‘.$horizontalDiv;

    3. Replace the code searched above with following:-

    $content = $horizontalDiv.$content.$horizontalDiv;

    4. Save the file back. Replace existing file, if prompted.

    Do let us know if you still face any issue

    Thread Starter kcraighead

    (@kcraighead)

    I didn’t find the line you mentioned but I did find a very similar one:
    $content = $horizontalDiv.’
    ‘.$content.’
    ‘.$horizontalDiv;

    I then changed it to:
    $content = $horizontalDiv.$content.$horizontalDiv;

    And that worked.

    Thread Starter kcraighead

    (@kcraighead)

    Ah wait, I see what happened. When we put in the <br/> we forgot to add it as code so it stripped it out.

    I’ll try adding the line again for anyone trying to reference this in future. The line to find is:

    $content = $horizontalDiv.'<br/>'.$content.'<br/>'.$horizontalDiv;

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Extra line break added underneath’ is closed to new replies.