I did some investigations, and checked in the theme files.
In the site_branding.php file, the function ‘dara_social_menu()’ is called.
I looked for it and found it declares in dara/inc/jetpack.php
function dara_social_menu() {
if ( ! function_exists( 'jetpack_social_menu' ) ) {
return;
} else {
jetpack_social_menu();
}
}
I believe the issue comes from it returns nothing if there’s no jetpack.
But I don’t want to install jetpack. (and it’s said nowhere that it’s required, so I don’t think i need to)
What can I return here in order to display the social menu? I know enough to kind of investigate on things, but not enough to know what to write here.
I hope i’m in the right direction, i’d love to have this sexy social menu ^_^
-
This reply was modified 7 years, 10 months ago by thomross.