I removed the linkedin.js as that wasn’t supposed to be there, but I am still seeing the linked in share at the bottom of the page? Also as a note to other readers, please ignore the that begins the code.
Here is what I’ve tried, but doesn’t work:
Where I set a class ftboxind
function($) {
$('.ftboxind').each(function(){
$(this).find('.x-feature-box-graphic-inner img').wrapAll('<a href="' + $(this).find('.x-feature-box-text > a').attr('href') + '" />');
$(this).find('h4').wrapAll('<a href="' + $(this).find('.x-feature-box-text > a').attr('href') + '" />');
});
})(jQuery);
Still no success.
I’ve also tried:
jQuery ( function( $ ) {
$('.x-feature-box-text a:last-child').each( function() {
$( this ).parent().parent().parent().find('.x-feature-box-graphic-inner img').wrap( '<a href="' + $( this ).attr('href') + '"></a>' );
$( this ).remove();
} );
} );
But no success.