This action runs just before the table header at Downloads > Social Login Page.
do_action( 'edd_slg_social_table_header_before' );
This action runs just after the "network" column in table header at Downloads > Social Login Page.
do_action( 'edd_slg_social_table_header_network_after' );
This action runs just after the table header at Downloads > Social Login Page.
do_action( 'edd_slg_social_table_header_after' );
This action runs just before the table body at Downloads > Social Login Page.
do_action( 'edd_slg_social_table_content_before' );
This action runs just before the table row for each social network at Downloads > Social Login Page.
do_action( 'edd_slg_social_table_data_before', $key, $value );
This action runs just after the icon column in table for each social network at Downloads > Social Login Page.
do_action( 'edd_slg_social_table_data_icon_after', $key, $value );
This action runs just after the network column in table for each social network at Downloads > Social Login Page.
do_action( 'edd_slg_social_table_data_network_after', $key, $value );
This action runs just after the register count column in table for each social network at Downloads > Social Login Page.
do_action( 'edd_slg_social_table_data_reg_count_after', $key, $value );
This action runs just after the table body at Downloads > Social Login Page.
do_action( 'edd_slg_social_table_content_after' );
This action runs just before the table footer at Downloads > Social Login Page.
do_action( 'edd_slg_social_table_footer_before' );
This action runs just after the network column in table footer at Downloads > Social Login Page.
do_action( 'edd_slg_social_table_foooter_network_after' );
This action runs just after the table footer at Downloads > Social Login Page.
do_action( 'edd_slg_social_table_footer_after' );
This action runs just after the social login table at Downloads > Social Login Page.
do_action( 'edd_slg_social_data_table_after' );
This action runs just after the user is created using social networks.
do_action( 'edd_slg_social_create_user_after', $type, $usercreated );
This action runs during social login buttons displaying on front side.
do_action( 'edd_slg_checkout_social_login' );
The edd_slg_social_chart_colors filter is applied to the social network chart colors. You can add new social network or also modify color of existing social network.
$colors = apply_filters( 'edd_slg_social_chart_colors', $colors );
The edd_slg_social_username filter is applied to modify username when new user is created from social login.
$username = apply_filters( 'edd_slg_social_username', $username, $criteria );
The edd_slg_social_networks filter allows you to easily add support for your own additional social network to Easy Digital Downloads - Social Login.
apply_filters( 'edd_slg_social_networks', $socialnetworks );
The edd_slg_sorted_social_networks filter allows you to modify sorted social network. You can change order of social network.
apply_filters( 'edd_slg_sorted_social_networks', $return );