[Hustle Pro] Add custom social sharing buttom

0

Is it possible to add LINE or more customized social sharing?

  • Nebu John
    • FLS

    Hi Mane Lin ,

    The following custom code (as a mu-plugin) can help add a new social network to the list on the Admin area.

    <?php
    dd_filter( 'hustle_social_platform_names', function( $vars ) {
    	// Add a new social network to the list
    	$vars['abc'] = esc_html( 'Abc' );
    
    	return $vars;
    }, 11 );

    and add this CSS (to WP Dashboard >> Appearance >> Customize >> Additional CSS ) for adding a custom icon.

    .hustle-icon-social-abc {
    	background: transparent url("https://www.example.com/images/branding/googleg/1x/googleg_standard_color_128dp.png") no-repeat center;
    	background-size: 14px 14px;
    }

    Please note you need to update the URL for the background image in the above CSS with the one that you need to add.

    I hope that helps, feel free to get back to us if you need any further assistance.

    Kind Regards,
    Nebu John