I’ve injected some icons above my copyright footer in X theme, but I can’t seem to get the icons to display. I know there is a social icons option available for the footer, but I’ve got to add a few custom icons, so the injection method seemed like a better fit.
I’ve panned over all the documentation that X theme offers regarding icon usage, but to no avail. The icons are not appearing on the site. Here is the site I’ve added these icons to: https://octocogstage.wpengine.com
Any direction would be appreciated:
//Adds unique social icons to footer of page above copyright
function custom_content_before_copyright_footer() {
?>
<div class="x-row-inner">
<div class="e7-6 x-col">
<a class="e7-7 x-anchor x-anchor-button" tabindex="0" href="#" target="_blank" style="outline: none;">
<div class="x-anchor-content">
<span class="x-graphic" aria-hidden="true">
<i class="x-icon x-graphic-icon x-graphic-primary" aria-hidden="true" data-x-icon-s=""></i>
</span>
</div>
</a></div>
</div>
<?php
}
add_action('x_after_view_global__nav-footer', 'custom_content_before_copyright_footer');