hello there,
first, thanks really a lot for your great theme which i use on a clients website.
with the latest update to version 3 i got reminded that i wanted to give you a hint about a typing errror, which i have to ‘fix’ each time on a theme update.
in header.php on line 59 there’s this
<?php
/**
* interface_before hook
*/
do_action( 'interface_before
' );
?>
but i i add an action on ‘interface_before’ it won’t get picked up by wordpress because of the whitespace after interface_before and the single quote …
could you perhaps update your code and remove the whitespace?
<?php
/**
* interface_before hook
*/
do_action( 'interface_before' );
?>
so i can add an action to it, without having to update the header.php each time
add_action( 'interface_before', 'ems_add_facebook_sdk' );
that would be really awesome 😉
thanks again for your nice theme & wish you guys all the best
greeetings
becki