• Hello. Thanks for the great plugin! Is there a way to change the button text labels, eg ‘Twitter’ > ‘Tweet’?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Robin Cornett

    (@littlerchicken)

    Yes, with the main buttons filter, you can change quite a lot about the buttons. Changing labels would follow this pattern:

    
    add_filter( 'scriptlesssocialsharing_buttons', 'prefix_change_labels' );
    function prefix_change_labels( $buttons ) {
    	$buttons['twitter']['label'] = 'Tweet';
    	return $buttons;
    }

    HTH

    Thread Starter scooterlord

    (@scooterlord)

    great! thanks for your fast reply!

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

The topic ‘Change button labels’ is closed to new replies.