Thanks Glen, you described it quite clearly. How did you pleace the icons? Via widget or shortcode? Rgds, John
Thanks for the quick reply! It was added via the widget.
Ok, thank you, let us look into this…
Glen, could you please email me a screenshot of your settings (in the admin area) to “support at ultimatelysocial dot com”?
I checked my parent themes header.php file and the instructions that the notification at the top of the screen explains doesn’t make sense on my theme:
Error : Please fix your theme to make plugins work correctly: Go to the Theme Editor and insert <?php wp_head(); ?> just before the </head> line of your theme’s header.php file.
I’m using The7 which is one of the most popular themes on ThemeForest and is also the best overall theme I have ever used (I’ve used roughly 100 by now). Here are the contents of the header.php file:
<?php
/**
* @package vogue
* @since 1.0.0
*/
// File Security Check
if ( ! defined( ‘ABSPATH’ ) ) { exit; }
get_template_part( ‘header-single’ );
get_template_part( ‘header-main’ );
…thats it. To follow along, I added wp_head(); ?> to that so it now looks like this:
<?php
/**
* @package vogue
* @since 1.0.0
*/
// File Security Check
if ( ! defined( ‘ABSPATH’ ) ) { exit; }
get_template_part( ‘header-single’ );
get_template_part( ‘header-main’ );
wp_head(); ?>
…There is no </head> in The7’s header.php file. After adding this, the icons still float left instead of being center aligned.
Thanks for that. As mentioned because it’s template specific we’re not having a look at it now, but I’ll put it on our longlist.