• It seems that the plugin doesn’t care about the settings !

    When I change the Like Button Layout, the button stays the same.

    I chose to display the button manually with : sfc_like_button()

    Same problem for the share button.

    Cheers,

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Samuel Wood (Otto)

    (@otto42)

    WordPress.org Admin

    Those settings only apply to the automatically inserted buttons. If you use the manual code, you need to specify the settings as arguments to the function call.

    Example:

    sfc_like_button(array(
    	'layout'=>'standard', 		// standard or button_count
    	'showfaces'=>'true', 		// true or false
    	'width'=>'450',
    	'height'=>'65',
    	'send' => 'false',		// true or false
    	'action'=>'like',		// like or recommend
    	'colorscheme'=>'light',		// light or dark
    	'font' => 'lucida+grande',	// arial, lucida+grande, seqoe+ui, tahoma, trebuchet+ms, or verdana
    	)
    );

    Yeah I figured out ! 🙂

    You deserve a beer. Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin : Simple Facebook Connect] Like Buttons / Share Buttons Settings’ is closed to new replies.