Looks like I would need to place the code for the social links into the:
tc_colophon_left_block
First up, read an easy guide to actions, filters and hooks.
Once you’ve done that and rooted in class-footer-footer_main.php, you can see that Customizr is giving you a filter for the left block in the footer that looks like this:
function tc_colophon_right_block() {
echo apply_filters(
'tc_colophon_right_block',
sprintf('<div class="%1$s"><p class="pull-right"><a class="back-to-top" href="#">%2$s</a></p></div>',
apply_filters( 'tc_colophon_right_block_class', 'span4 backtop' ),
__( 'Back to top' , 'customizr' )
)
);
}
Having read the article, you know that you must return something, bacause this is a filter. The original code is “echo”ing, so it’s looking for some straight html. So you should be able to use something like this in your functions.php:
add_filter('tc_colophon_right_block','my_colophon_right_block');
function my_colophon_right_block() {
$my_colophon_contents = 'YOUR VALID HTML HERE';
return '<div class="span4">' . $my_colophon_contents . '</div>';
}
Exchange YOUR VALID HTML HERE
for either valid html, or code that will produce valid html.
If you’ve not used a child theme’s functions.php before, read this guide.