• Hi,

    I just upgraded to the latest Storefront version (2.3.0) and found that the social media buttons are no longer displayed on the page (the links are still there, but the image of the button is gone).

    Any thoughts how this could be solved?

    Thanks,
    Miki

Viewing 1 replies (of 1 total)
  • So, a quick temporary fix until the issue is resolved …

    Add this to your functions.php file:

    add_action( 'wp_head', 'temp_sps_fa' );
    
    function temp_sps_fa(){ ?>
    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
    <?php }

    Add this to your appropriate css file:

    .storefront-product-sharing ul li a::before {
        font-family: "Font Awesome\ 5 Brands";
    }
    
    .storefront-product-sharing ul li.facebook a::before {
        content: "\f09a";
    }
    
    .storefront-product-sharing ul li.email a::before {
        font-family: "Font Awesome\ 5 Free";
        font-weight: 900;
    }

    Don’t forget to remove these temporary changes once the plugin is fixed by the author.

    • This reply was modified 6 years, 10 months ago by rambillo. Reason: Fixed formatting and added reminder to remove these changes once the plugin is fixed
Viewing 1 replies (of 1 total)
  • The topic ‘New Storefront version is incompatible with the current plugin version’ is closed to new replies.