Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter bermudacloud

    (@bermudacloud)

    I have done the following

    1. Customize your plugin look & feel
    Choose the providers to display:
    Select your layout: ‘Embedded shown directly on the page’
    Select your theme: ‘signup’ (I don’t see these long bar icons on live page, only square icons)
    Setup your callback URL: http://lanuvola.org/callback_handler.php

    2) Insert the code in your page in header.php and on register page

    No Luck!

    I would like to have the … icon bars on my register page…

    Under Dashboard -> Social Login -> Settings, there’s a box titled “Registration Page Settings.” One of the possible options is “Yes, display the social network buttons below the registration form (Default)”

    Thread Starter bermudacloud

    (@bermudacloud)

    Thanks Latinoleader but I’d already selected that option

    Plugin Author Claude

    (@claudeschlesser)

    Hello,

    just add this code to the end of the functions.php file of your WordPress theme. By doing so your changes will not be overwritten when you install a new version of Social Login.

    function oa_social_login_set_custom_css($css_theme_uri)
     {
     	//Added to use custom CSS
    	$css_theme_uri = 'http://public.oneallcdn.com/css/api/socialize/themes/buildin/connect/large-v1.css';
    
    	//Done
    	return $css_theme_uri;
     }
     add_filter('oa_social_login_default_css', 'oa_social_login_set_custom_css');

    Regards,

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘'sign up with twitter' icon bars on register page’ is closed to new replies.